I have the following python code:
print \'This is a simple game.\' input(\'Press enter to continue . . .\') print \'Choose an option:\' ...
In Python 2, input() strings are evaluated, and if they are empty, an exception is raised. You probably want raw_input() (or move on to Python 3).
input()
raw_input()