Questions tagged «nameerror»

13
input()错误-NameError:名称“ ...”未定义
尝试运行此简单脚本时出现错误: input_variable = input ("Enter your name: ") print ("your name is" + input_variable) 假设我输入“花花公子”,我得到的错误是: line 1, in <module> input_variable = input ("Enter your name: ") File "<string>", line 1, in <module> NameError: name 'dude' is not defined 我正在使用python 2.7运行这些脚本。


4
NameError:全局名称“ unicode”未定义-在Python 3中
我正在尝试使用一个名为bidi的Python包。在此程序包(algorithm.py)的模块中,尽管它是程序包的一部分,但仍有一些行会给我带来错误。 以下是这些行: # utf-8 ? we need unicode if isinstance(unicode_or_str, unicode): text = unicode_or_str decoded = False else: text = unicode_or_str.decode(encoding) decoded = True 这是错误消息: Traceback (most recent call last): File "<pyshell#25>", line 1, in <module> bidi_text = get_display(reshaped_text) File "C:\Python33\lib\site-packages\python_bidi-0.3.4-py3.3.egg\bidi\algorithm.py", line 602, in get_display if isinstance(unicode_or_str, unicode): NameError: global …

12
python NameError:全局名称'__file__'未定义
当我在python 2.7中运行此代码时,出现此错误: Traceback (most recent call last): File "C:\Python26\Lib\site-packages\pyutilib.subprocess-3.5.4\setup.py", line 30, in <module> long_description = read('README.txt'), File "C:\Python26\Lib\site-packages\pyutilib.subprocess-3.5.4\setup.py", line 19, in read return open(os.path.join(os.path.dirname(__file__), *rnames)).read() NameError: global name '__file__' is not defined 代码是: import os from setuptools import setup def read(*rnames): return open(os.path.join(os.path.dirname(__file__), *rnames)).read() setup(name="pyutilib.subprocess", version='3.5.4', maintainer='William E. Hart', maintainer_email='wehart@sandia.gov', …
112 python  nameerror 

1
Python NameError:名称“ include”未定义
关闭。这个问题需要调试细节。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 4年前关闭。 改善这个问题 我目前正在使用Django框架(非常新手)开发一个网站,但是我对Python遇到了问题:由于创建了模板,因此由于该原因我无法再运行服务器(堆栈跟踪指向文件urls.py中的一行): <stacktrace> ... path('apppath/', include('myapp.urls')), NameError: name 'include' is not defined 我可以include从哪里进口?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.