SyntaxFix
Write A Post
Hire A Developer
Questions
Simply using
input("Press Enter to continue...")
will cause a SyntaxError: expected EOF while parsing.
Simple fix use:
try: input("Press enter to continue") except SyntaxError: pass