¿Por qué input () da un error cuando presiono enter?

Tengo el siguiente código de Python:

print 'This is a simple game.'
input('Press enter to continue . . .')
print 'Choose an option:'

...

Pero cuando presionoEntra, obtengo el siguiente error:

Traceback (most recent call last):
  File "E:/4.Python/temp.py", line 2, in <module>
    input('Press enter to continue . . .')
  File "<string>", line 0

   ^
SyntaxError: unexpected EOF while parsing

PD. Estoy usando Python IDLE versión 2.6 en Windows 7.

Respuestas a la pregunta(4)

Su respuesta a la pregunta