修复 Python中错误 NameError: Input Name Is Not Defined
在Python 2.7和2.x版本中,raw_input()
函数和input()
是两个用于获取用户输入的内置函数。 但在Python 3,0以后的版本中,raw_input()
被重命名为input()
,现在仍在使用。
修复Python中 NameError: input name is not defined
在旧版本的 Python 中,输入函数用于计算 Python 表达式,但如果您想读取字符串,则使用 raw_input 来实现此目的。 但现在,raw_input函数被重命名为input,因此它在3.x版本的Python中不起作用。
让我们通过一个例子来理解它。
为了本主题,我们使用 Python 2.7 版本。 如果您在 Python 3.x 版本上使用此代码,则执行此代码将不会出现错误。
#Python 2.7 version
name = input("Hi! What is your good name? ")
print("Nice to meet you "+ name)
输出:
NameError: name 'Zeeshan' is not defined
上面的代码导致了名称错误,因为输入不是用于读取旧版本 Python 中的字符串,而是用于计算 Python 表达式。 要修复此名称错误,我们可以使用 raw_input 函数,因为它是为读取字符串而构建的。
让我们使用 raw_input 函数修复名称错误。
name = raw_input("Hi! What is your good name? ")
print("Nice to meet you "+ name)
输出:
Hi! What is your good name? Nice to meet you Zeeshan
正如您所看到的,raw_input
函数已经修复了名称错误并顺利执行了程序。
相关文章
避免 Python中的 TypeError: Input Expected at Most 1 Argument, Got 3 错误
发布时间:2023/07/08 浏览次数:111 分类:Python
-
Python 中避免 TypeError: input Expected atmost 1 argument, got 3 Error在Python编程中,我们有两个内置方法来获取用户的输入:input(prompt)和 raw_input(prompt)。
Python 错误 TypeError: Int Object Is Not Callable
发布时间:2023/07/08 浏览次数:142 分类:Python
-
本篇文章将讨论所有场景以及修复 TypeError: 'int' object is not callable in Python 的解决方案。python 中添加缺少的运算符以修复 TypeError: 'int' object is not callable 有时您可能忘记在代码中添加数学运算符。
Python 中 ImportError: Cannot Import Name _Remove_dead_weakref
发布时间:2023/07/08 浏览次数:181 分类:Python
-
在Python中,我们使用模块来定义和存储文件中的功能和类,这些文件可以导入到其他程序中。 我们使用 import 语句从模块导入函数和对象。Python 中 ImportError: cannot import name _remove_dead_weakref错误
Python 中 Error: else & elif Statements Not Working 错误
发布时间:2023/07/08 浏览次数:166 分类:Python
-
我们可以将 Python 中的 else 语句与 elif 和 if 语句结合起来。 但是,在代码中运行 if...elif...else 语句时,您可能会收到Python 中 SyntaxError: invalid syntax 的错误。
Python 错误 Error: Can't Find Python Executable Python, You Can Set the PYTHON
发布时间:2023/07/08 浏览次数:144 分类:Python
-
本篇文章将介绍 Can't find Python executable "python", you can set the PYTHON env variable 错误以及如何修复它。Python 中 Error: Can't find Python executable "python", you can set the PYTHON env variable 错误
Python 错误 ImportError: No Module Named
发布时间:2023/07/08 浏览次数:154 分类:Python
-
本篇文章将介绍修复 ImportError: No module named。安装模块以修复Python 中 ImportError: No module named Python 包含几个内置模块。检查 typeerror 以修复 Python 中 ImportError: No module named
Python 错误 Object Is Not Callable
发布时间:2023/07/08 浏览次数:157 分类:Python
-
我们将讨论对象不可调用的类型错误,看看问题是如何发生的以及如何修复它,并学习如何使用可调用函数来检查对象在Python中是否可调用。
python 中的错误 NameError: Name Python Is Not Defined
发布时间:2023/07/08 浏览次数:59 分类:Python
-
我们将了解什么是 NameError 以及如何修复它。 我们还将学习如何修复当我们在解释器内调用 Python 而不是 Python 中的终端时出现的 NameError: name 'python' is not Defined。
Python 中错误 IOError: [Errno 13] Permission Denied
发布时间:2023/07/08 浏览次数:51 分类:Python
-
发生 IOError 是很常见的,因为我们人类主要与计算机的 GUI 进行交互什么是Python文件处理中 IOError: [Errno 13] Permission denied 在文件处理中,您需要提供要访问的文件的完整路径; 否则,您将得到