0

我第一次尝试在某个朋友的计算机上安装 Python 时遇到此错误(Windows7 - x64)

它说

C:\Users\Username\Desktop\proyect> myproyect.py  
    File "myproyect.py" line 1  
      ActivePython 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:32:19) [MSC v.1500 32 bit (Intel)] on win32  
                     ▲  
SyntaxError: invalid syntax   
4

1 回答 1

1

该文件不仅包含 python 代码,因此存在语法错误。

请检查该文件仅包含

print "hello world"

并不是

ActivePython 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:32:19) [MSC v.1500 32 bit (Intel)] on win32
# some other stuff... 
print "hello world"
于 2016-04-03T21:13:38.247 回答