File "<stdin>" , line 1

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

时间: 2024-10-25 04:52:52

File "<stdin>" , line 1的相关文章

第一个Python程序hello.py提示出现File &quot;&lt;stdin&gt;&quot;,line 1错误

写第一个Python程序hello.py,内容仅有一句,print 'hello world', 运行 Python hello.py 出错,提示: File "<stdin>" , line 1python hello.py SyntaxError:invalid syntax 原因: 在shell脚本中,运行shell脚本命令:在Python命令行中,运行Python代码.然而,"python hello.py"是一个脚本命令,不是python代码.

python {File &quot;&lt;stdin&gt;&quot;, line 1} error

学习Python时,第一个程序hello.py(如下) print("hello welcome to python world") 运行报上图错误,是因为已经命令行指示已经运行了Python解释器,注意区分命令行环境和Python交互环境,如下图,直接输入python进入交互模式,即出现>>>是进入了Python交互环境,相当于启动了Python解释器,等待你一行一行地输入源代码,每输入一行就执行一行.而现在是已经写好了.py文件,想要一次性执行完全部的源代码,应该

Python使用eval强制转换字符串为字典时报错:File &quot;&lt;string&gt;&quot;, line 1, in &lt;module&gt; NameError: name &#39;nan&#39; is not defined

文本中保存的内容为: { 'QQQ': [0.067, 0.167, 0.2, 0.033, 0.233, 0.267, 0.1, 0.133], 'TTT': [0.5, 0.375, 0.25, 0.3, 0.6, 0.333, 0.857, 0.636, 0.667, 0.556] } 用eval转换为字符串时报错: File "test.py", line 43, in d1 data = eval(infile.readline()) File "<strin

Thonny报错:Traceback (most recent call last): File &quot;&lt;pyshell&gt;&quot;, line 1, in &lt;module&gt; NameError: name &#39;a&#39; is not defined

thonny的shell窗口执行python: 提示报错: 实际可以执行部分语句: 经查是由于安装python版本是32位的?,而这个软件是64的,系统也是64的 尝试卸载python:发现安装的是64位的python啊: 从thonny打开系统shell,和自己cmd打开:检查pyhon版本:发现有两个版本,位数可能也不一样: 尝试检查路径: 实际上都没问题,就该软件的这个帮助里看到是32的怪怪的,直接导致该软件的shell有问题: 具体原因查到了再更新: Thonny报错:Traceback

ImportError: libmysqlclient.so.18: cannot open shared object file: No such file or directory

情景:在python中使用mysql 已知: [[email protected] muahao03]# pip list Django (1.7.1) MySQL-python (1.2.5) pip (1.5.6) pysqlite (2.6.3) setuptools (8.2.1) wsgiref (0.1.2) 已经安装 MySQL-python 报错: ImportError: libmysqlclient.so.18: cannot open shared object file:

python重定向sys.stdin、sys.stdout和sys.stderr

标准输入.标准输出和错误输出. 标准输入:一般是键盘.stdin对象为解释器提供输入字符流,一般使用raw_input()和input()函数. 例如:让用户输入信息(Python环境为2.x): 1 #!/usr/bin/python 2 # -*- coding: utf-8 -*- 3 import sys 4 name = raw_input("Please input your name: ") 5 print name 6 7 # python test.py 8 Plea

ImportError: libmysqlclient.so.20: cannot open shared object file: No such file or directory 解决办法

>>> import MySQLdbTraceback (most recent call last):  File "<stdin>", line 1, in <module>  File "build/bdist.linux-x86_64/egg/MySQLdb/__init__.py", line 19, in <module>  File "build/bdist.linux-x86_64/eg

Python_报错:SyntaxError: unexpected character after line continuation character

原因:写入的文件内容不正确,应处理为字符串 >>> import os >>> os.makedirs(time_year+"\\"+time_month+"\\"+time_day)#其中的time_year.time_month.time_day都是有赋值的变量 >>> os.chdir(time_year\time_month\time_day)#问题出在这里,写法不对 File "<std

Python_报错:TypeError: file must have &#39;read&#39; and &#39;readline&#39; attributes

Python 报错:TypeError: file must have 'read' and 'readline' attributes 在运行序列化(pickle)相关功能时报错:TypeError: file must have 'read' and 'readline' attributes 上代码: >>> fp = open("a.txt","r+") >>> import pickle >>> pic