I have the following python code:
print \'This is a simple game.\' input(\'Press enter to continue . . .\') print \'Choose an option:\' ...
In Python 2.x, input() is equivalent to eval(raw_input()). And eval gives a syntax error when you pass it an empty string.
input()
eval(raw_input())
eval
You want to use raw_input() instead.
raw_input()