写了一个hello.py,仅有一句,print 'hello world',
运行 Python hello.py 出错,提示:
File "<stdin>" , line 1python hello.py
原因是.指令不是在python环境下执行而是在shell中执行所以
退出python命令行,直接cd到hello.py所在目录,运行python hello.py,成功。