解决 Python 中的 NameError: global name __file__ is not defined 错误
Vaibhav Vaibhav
2022年5月17日
dunder 是一个由双下划线包围的变量。Python 是一个特殊变量,用于独特用途并存储特殊信息。
__file__
是 Python 中的一个 dunder。它保留了导入的 Python 模块的路径,其值可以按如下方式访问。
import math
import random
import numpy
print(random.__file__)
print(math.__file__)
print(numpy.__file__)
如果未定义此变量,Python 解释器会引发以下错误。
NameError: global name __file__ is not defined
本文将学习如何在 Python 中解决此错误。
解决 Python 中的 NameError: global name __file__ is not defined
错误
当我们尝试在 Python shell 中访问这个变量时,就会出现这个错误。应将所有代码转移到 Python 文件并使用终端中的以下命令执行以修复此错误。
python <file>.py <command line paramters>
Author: Vaibhav Vaibhav