码迷,mamicode.com
首页 > 其他好文 > 详细

File "<stdin>" , line 1

时间:2017-05-03 09:21:10      阅读:740      评论:0      收藏:0      [点我收藏+]

标签:comm   int   命令行   tle   net   run   解释   href   logs   

写了一个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,成功。

 

 

 

技术分享

 

File "<stdin>" , line 1

标签:comm   int   命令行   tle   net   run   解释   href   logs   

原文地址:http://www.cnblogs.com/huchaoheng/p/6800150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!