下载Python 2.5.4(Windows)
打开Python Shell并输入
print "hello world"
回来了
hello world
打开Notepad ++
已输入print "hello world"
保存为hello.py
退出该文件并返回shell
进入shell
$ python hello.py
得到了
SyntaxError: invalid syntax
我不确定是什么原因造成的。我试图改变目录,至少我想我做了 <控制面板> <环境变量>路径&gt;添加; C:\ Python26到最后 然后我重新启动了我的comp并尝试了
$ python hello.py
除了错误之外,仍然没有任何结果。我真的很疯狂,试图让它发挥作用。我对python和编程语言非常陌生。所以,如果您做出回应,请让初学者理解。提前感谢您的帮助。
答案 0 :(得分:1)
您正在python shell中运行python hello.py
命令,这是不可能的。如果你在python shell中,你可以运行import hello
来运行脚本。