I have a slight problem trying to run a python program from the terminal on my Mac. When my '.py' program has a 'input ("press the enter key to find out.")' command the terminal gives the following error message once you've pressed the 'return' key.
Traceback (most recent call last):
File "word_problems.py", line 6, in <module>
input ("press the enter key to find out.")
File "<string>", line 0
^
SyntaxError: unexpected EOF while parsing
Can someone explain where the problem is?
Thanks in advance.