第⼀个Python程序hello.py提⽰出现Filestdin,line1错误syntaxerror是什么错误
写第⼀个Python程序hello.py,内容仅有⼀句,print 'hello world',
运⾏ hello.py 出错,提⽰:
File "<stdin>" , line 1
python hello.py
SyntaxError:invalid syntax
原因:
在shell脚本中,运⾏shell脚本命令;在Python命令⾏中,运⾏Python代码。然⽽,“python hello.py”是⼀个脚本命令,不是python代码。
因此,退出python命令⾏,直接cd到hello.py所在⽬录,运⾏python hello.py,即可。
若是⾮要在python命令⾏中运⾏,输⼊print("hello world")即可。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论