I'm trying to make the the second print statement wait until I press enter in the command line but I keep getting an unexpected EOF error.
print "hi"
continu = input("Press Enter to continue!")
print "hi"
Here is my traceback
Traceback (most recent call last):
File "save_cookies.py", line 2, in <module>
continu = input("Press Enter to continue!")
File "<string>", line 0
^
SyntaxError: unexpected EOF while parsing
python save_cookies.py?inputtoraw_input.