修复 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 中错误 Address Already in Use
发布时间:2023/07/09 浏览次数:173 分类:Python
-
我们将通过示例介绍Python中何时出现 Address already in use 错误以及如何解决。Python 中的错误Address already in use 本文将讲述运行使用端口的程序时发生的Python堆栈错误。
Python 中错误 ValueError: Math Domain Error
发布时间:2023/07/09 浏览次数:607 分类:Python
-
在本篇文章中,我们的目标是探索解决 Python 中的 ValueError: math domain error 错误的不同方法。当编码方面数学(基础或高级)的使用存在固有缺陷时,Python 中通常会引发 ValueError: math domain error 错
Python 错误 Name xrange Is Not Defined
发布时间:2023/07/09 浏览次数:153 分类:Python
-
本篇文章将介绍如何解决 Python 中 name 'xrange' is not defined 的错误。解决Python中name 'xrange' is not defined错误 让我们尝试理解为什么会发生这个特定的错误。 让我们首先尝试复制这个问题。
Python 错误 TypeError: List Indices Must Be Integers, Not STR
发布时间:2023/07/09 浏览次数:954 分类:Python
-
在本篇文章中,我们的目标是探索如何避免 TypeError: list indices must be integers or slices, not str。TypeError主要发生在Python中,每当操作的数据类型出现问题时。
Python 中错误 AttributeError: __Enter__
发布时间:2023/07/09 浏览次数:2241 分类:Python
-
在 Python 中,AttributeError 是在未定义 __enter__ 函数的情况下通过 with 语句使用类的对象时导致的错误。
Python 错误 ModuleNotFoundError: No Module Named '_Ctypes'
发布时间:2023/07/09 浏览次数:686 分类:Python
-
本篇文章旨在了解如何解决 Python 中的 ModuleNotFoundError: No module named '_ctypes'。了解Python中 ModuleNotFoundError: No module named '_ctypes' 根本原因
Python 错误 AttributeError: '_io.TextIOWrapper' Object Has No Attribute 'Split'
发布时间:2023/07/09 浏览次数:1063 分类:Python
-
本篇文章将介绍如何修复 Python 中的 AttributeError: '_io.TextIOWrapper' object has no attribute 'split'。在 _io.TextIOWrapper 上使用 split() 方法会返回 AttributeError
Python 错误 AttributeError: _csv.reader Object Has No Attribute Next
发布时间:2023/07/09 浏览次数:286 分类:Python
-
本篇文章将介绍如何修复 Python 中的 AttributeError: '_csv.reader' object has no attribute 'next'。修复 Python 中的 AttributeError: '_csv.reader' object has no attribute 'next' 错误
Python 错误 Error: Invalid Command Bdist_wheel
发布时间:2023/07/09 浏览次数:847 分类:Python
-
在 Python 中构建 wheel 时,有时 setup.py 可能会退出并出现错误 invalid command 'bdist_wheel'。 本篇文章将讨论在 Python 中解决此问题的可能解决方案。安装wheel包来修复Python中 Error:invalid command 'bdist_