python 中的错误 NameError: Name Python Is Not Defined
我们将了解什么是 NameError
以及如何修复它。 我们还将学习如何修复当我们在解释器内调用 Python 而不是 Python 中的终端时出现的 NameError: name 'python' is not Defined。
修复 Python 错误 NameError: name 'python' is not defined
有时我们在Python中会遇到NameError,因为我们在代码中编写了一个变量,但我们没有告诉Python该变量是什么。
现在我们编写了一个 Python 脚本来演示如何引发错误。
name="Bob"
fave_animal="dog"
print("Hi",name,"Your favorite animal is a",fave_animal)
print("Your favorite film is", film)
在此代码中,我们定义了 name 和 fave_animal 但尚未定义 film,因此当我们运行此代码时,我们会收到 name 'film' is not Defined 错误。 这意味着 Python 不知道“film”是什么。
NameError: name 'film' is not defined
我们可以通过定义电影来解决这个问题,并且可以通过运行这个脚本来做到这一点。
film="John Wick"
print("Your favorite film is", film)
输出:
Your favorite film is John Wick
您可能收到错误的另一个原因是当您无意中错误地写了变量,例如:films,因此如果我们运行它,它会引发相同的错误。
film="John Wick"
print("Your favorite film is", films)
输出:
NameError: name 'films' is not defined
出现错误的另一种方法是假设您在任何地方定义字符串时忘记在引号内添加单词。 在我们的例子中,我们在 Python 脚本中犯了一个愚蠢的错误,如果我们运行这段代码,我们会得到同样的错误。
python
输出:
NameError: name 'Your' is not defined
大多数初学者都会犯这些类型的错误,有时会发现很难找到解决方案。
初学者犯这个愚蠢错误的另一件事是,他们尝试在 Python 解释器内调用 python,当他们在解释器内执行此命令时,他们会得到我们讨论过的相同错误。
C:\Users\Dell>python
Python 3.9.1 (tags/v3.9.1:1e5d33e, Dec 7 2020, 17:08:21) [MSC v.1927 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> python
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'python' is not defined
当我们运行 CMD 并输入 python 时,它会启动 Python 解释器,但再次输入它会尝试将 python 解释为变量名,但该名称未定义,因此我们收到错误。
在CMD中,不需要再次调用它来启动Python。 Python解释器已经启动了,所以不需要调用python来启动。
相关文章
Python 中错误 IOError: [Errno 13] Permission Denied
发布时间:2023/07/08 浏览次数:50 分类:Python
-
发生 IOError 是很常见的,因为我们人类主要与计算机的 GUI 进行交互什么是Python文件处理中 IOError: [Errno 13] Permission denied 在文件处理中,您需要提供要访问的文件的完整路径; 否则,您将得到
解决 Python 中 TypeError: Module Object Is Not Callable 错误
发布时间:2023/07/07 浏览次数:131 分类:Python
-
本文将讨论 TypeError: 'module' object is not callable。 当类/方法和模块具有相同的名称时,就会出现此错误; 由于名称相同,我们会混淆它们。Python 中 TypeError: 'module' object is not callable 的原因
解决 Python 中 OSError: [Errno 2] No Such File or Directory 错误
发布时间:2023/07/07 浏览次数:151 分类:Python
-
在Python中运行程序时,我们经常会遇到错误。 本文将讨论Python中的OSError: [Errno 2] No such file or directory。Python 中 OSError: [Errno 2] No such file or directory
Python 中错误 NoneType Object Has No Attribute Append
发布时间:2023/07/07 浏览次数:151 分类:Python
-
通过这个解释,我们将了解 NoneType 错误,并了解导致此错误的原因是什么。 我们还将学习如何在 Python 中修复此错误。
Python 中错误 IO.UnsupportedOperation: Not Writable
发布时间:2023/07/07 浏览次数:106 分类:Python
-
本篇文章将介绍 Python 中的 io.UnsupportedOperation: not writable 错误及其修复方法。修复 Python 中的 io.UnsupportedOperation: not writable 错误 当我们尝试对以读取模式打开的文件执行写入操作时,会导致此错
Python 中错误 ImportError: DLL Load Failed
发布时间:2023/07/07 浏览次数:69 分类:Python
-
通过这个解释,我们将了解 ImportError: DLL load failed 并了解发生这种情况的不同原因。 我们还将学习如何在 Python 中解决这个问题。
修复 Python 中错误 TypeError: Non-Empty Format String Passed to Object.__for
发布时间:2023/07/07 浏览次数:142 分类:Python
-
Python中TypeError: Non-Empty Format String Passed to Object.__format__ 的原因及解决方案 假设我们尝试对没有此方法的数据类型调用 format() 方法,例如字节数据类型。 解释器会抛出错误,因为字节类型对象没
修复Python中错误 TypeError: Int Object Is Not Iterable
发布时间:2023/07/07 浏览次数:160 分类:Python
-
本篇文章将介绍如何修复 Python 中的 TypeError: 'int' object is not iterable 错误。修复 Python 中的 TypeError: Int Object Is Not Iterable 错误 让我们看一个 Python 中的 TypeError 异常的示例。
Python 中错误 ValueError: Not Enough Values to Unpack
发布时间:2023/07/07 浏览次数:118 分类:Python
-
本文将通过示例详细介绍每个场景,但在此之前,让我们先了解一下 Python 中的 ValueError 是什么。Python 中的 ValueError 是什么ValueError: not enough values to unpack (expected 3, got 2)