第一次python代码,报错……
代码
print("Gma over")
input("\n\nPress the enter key to exit.")
报错
Python 2.7.10 (default, May 23 2015, 09:44:00) [MSC v.1500 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>>
Gma over
Press the enter key to exit.
Traceback (most recent call last):
File "D:/2.py", line 2, in <module>
input("\n\nPress the enter key to exit.")
File "<string>", line 0
^
SyntaxError: unexpected EOF while parsing
>>>
你使用的是Python2.7
其中print不是函数,应该如此:
print "Gma over"
而input是不能有其他文字的,你要的应该是这个函数:
raw_input("\n\nPress the enter key to exit.")
你的报错EFO,你是不是用了Sublime等编辑器,在运行代码,你试试Python自己的编辑器应该就没问题