«nameerror» 태그된 질문

13
input () error-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 이 …


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>", …

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__), …
112 python  nameerror 

1
Python NameError : 'include'이름이 정의되지 않았습니다.
닫은. 이 질문에는 디버깅 세부 정보 가 필요합니다 . 현재 답변을 받고 있지 않습니다. 이 질문을 개선하고 싶으십니까? Stack Overflow의 주제에 맞게 질문을 업데이트하세요 . 휴일 3 년 전 . 이 질문 개선 저는 현재 Django 프레임 워크를 사용하여 웹 사이트를 개발하고 있지만 (저는 매우 초보자입니다) Python에 문제가 있습니다. 템플릿을 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.