Sep-10-2019, 09:10 PM
when running this code:
import screens as scn
import inventory as inv
pressEnter = ""
scn.welcomeScreen_func()
pressEnter = input("press ENTER to continue: ")
pressEnter = 1
print(pressEnter)I get this error:Error:Traceback (most recent call last):
File "Main.py", line 8, in <module>
pressEnter = input("press ENTER to continue: ")
File "<string>", line 0
^
SyntaxError: unexpected EOF while parsing
------------------
(program exited with code: 1)
Press return to continueI've been trying to find the issue for hours with no luck, any advice helps, thanks all
