Thank you for taking the time to help me out. I'm an absolute beginner and started out just today with Python and the guide I'm using is called "Python Programming for the Absolute Beginner."
What I am trying to do is simply have the system show the string "Game Over" with the text "Press enter to exit" below. Goes without saying that I also want it to close when you press exit.
Here is what I have tried.
print("Game Over")
input("Press enter to exit")
and
print("Game Over")
input("\n\nPress the enter key to exit.")
The bottom one is the example used in the book. It doesn't work. What happens is when I save it as a .py file by using IDLE and I double click it the program just opens the prompt and closes it within a splitsecond.