写了一个hello.py,运行出错,提示 File "<stdin>" , line 1

来源:互联网 发布:深圳网络教育机构 编辑:程序博客网 时间:2024/04/26 03:19

写了一个hello.py,仅有一句,print 'hello world',

运行 python hello.py 出错,提示:

File "<stdin>" , line 1
python hello.py


解释:

In the shell you can run shell commands, in the Python command line you can run Python code.

"python hello.py" is a shell command, not Python code, so you should run it in the shell, but not on the Python command line. 

"print "hello"" is Python code, so you can run it on the Python command line, but not in the shell.


故,退出python命令行,直接cd到hello.py所在目录,运行python hello.py,成功。


初学者有用 转自:http://blog.csdn.net/scorpiomiracle/article/details/8285944

0 0