«attributeerror» 태그된 질문


14
AttributeError : 'module'객체에 속성이 없습니다
두 개의 파이썬 모듈이 있습니다 : a.py import b def hello(): print "hello" print "a.py" print hello() print b.hi() b.py import a def hi(): print "hi" 내가 실행하면 a.py, 내가 얻을 : AttributeError: 'module' object has no attribute 'hi' 오류는 무엇을 의미합니까? 어떻게 고치나요?

5
AttributeError (“ 'str'객체에는 'read'속성이 없습니다. ')
파이썬에서 오류가 발생합니다. Exception: (<type 'exceptions.AttributeError'>, AttributeError("'str' object has no attribute 'read'",), <traceback object at 0x1543ab8>) 주어진 파이썬 코드 : def getEntries (self, sub): url = 'http://www.reddit.com/' if (sub != ''): url += 'r/' + sub request = urllib2.Request (url + '.json', None, {'User-Agent' : 'Reddit desktop client by /user/RobinJ1995/'}) …

8
모듈의 __getattr__
__getattr__모듈에서 클래스 와 동등한 것을 어떻게 구현할 수 있습니까? 예 모듈의 정적으로 정의 된 속성에 존재하지 않는 함수를 호출 할 때 해당 모듈에 클래스의 인스턴스를 생성하고 모듈의 속성 조회에서 실패한 것과 동일한 이름으로 메서드를 호출하고 싶습니다. class A(object): def salutation(self, accusative): print "hello", accusative # note this function is intentionally …

16
왜 파이썬 3.6.1이 AttributeError를 던지는가 : 모듈 'enum'에 'IntFlag'속성이 없나요?
방금 MacOS X 용 Python 3.6.1을 설치했습니다. 콘솔을 실행하려고하면 (또는 Python3으로 무엇이든 실행)이 오류가 발생합니다. AttributeError: module 'enum' has no attribute 'IntFlag' $ /Library/Frameworks/Python.framework/Versions/3.6/bin/python3 Failed to import the site module Traceback (most recent call last): File "/usr/local/Cellar/python3/3.6.1/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site.py", line 544, in <module> main() File "/usr/local/Cellar/python3/3.6.1/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site.py", line 530, in main known_paths = …

3
AttributeError : '모듈'개체에 'urlretrieve'속성이 없습니다.
웹 사이트에서 mp3를 다운로드 한 다음 함께 결합하는 프로그램을 작성하려고하지만 파일을 다운로드하려고 할 때마다이 오류가 발생합니다. Traceback (most recent call last): File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 214, in <module> main() File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 209, in main getMp3s() File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 134, in getMp3s raw_mp3.add = urllib.urlretrieve("http://www-scf.usc.edu/~chiso/oldspice/m-b1-hello.mp3") AttributeError: 'module' object has no attribute …

3
AttributeError : Python 3.8에서 'time'모듈에 'clock'속성이 없습니다.
공개 및 개인 키를 생성하는 코드를 작성했습니다. Python 3.7에서는 훌륭하게 작동하지만 Python 3.8에서는 실패합니다. 최신 버전에서 어떻게 실패하는지 모르겠습니다. 몇 가지 해결책을 도와주세요. 코드는 다음과 같습니다. from Crypto.PublicKey import RSA def generate_keys(): modulus_length = 1024 key = RSA.generate(modulus_length) pub_key = key.publickey() private_key = key.exportKey() public_key = pub_key.exportKey() return private_key, public_key …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.