タグ付けされた質問 「attributeerror」

10
AttributeError: 'NoneType'オブジェクトに属性 'something'がないのはなぜですか?
私は言うエラーが出続けます AttributeError: 'NoneType' object has no attribute 'something' 私が持っているコードはここに投稿するには長すぎます。これを引き起こす一般的なシナリオは何ですかAttributeError、何NoneTypeを意味しているのでしょうか、そして何が起こっているのかをどのように絞り込むことができますか?

14
AttributeError: 'module' object has no attribute
私は2つのpythonモジュールを持っています: 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' object has no attribute 'read'")
Pythonではエラーが発生します。 Exception: (<type 'exceptions.AttributeError'>, AttributeError("'str' object has no attribute 'read'",), <traceback object at 0x1543ab8>) 与えられたpythonコード: 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/'}) response = urllib2.urlopen (request) jsonofabitch …

8
モジュールに対する__getattr__
__getattr__クラスに、モジュールに同等のものをどのように実装できますか? 例 モジュールの静的に定義された属性に存在しない関数を呼び出すとき、そのモジュールでクラスのインスタンスを作成し、モジュールの属性ルックアップで失敗したのと同じ名前でそのメソッドを呼び出します。 class A(object): def salutation(self, accusative): print "hello", accusative # note this function is intentionally on the module, and not the class above def __getattr__(mod, name): return getattr(A(), name) if __name__ == "__main__": # i hope here to have my __getattr__ function above invoked, since # salutation does …

16
Python 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 = addusersitepackages(known_paths) File "/usr/local/Cellar/python3/3.6.1/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site.py", line 282, in addusersitepackages user_site = getusersitepackages() File …

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 'urlretrieve' この問題を引き起こしている行は raw_mp3.add = urllib.urlretrieve("http://www-scf.usc.edu/~chiso/oldspice/m-b1-hello.mp3")

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 a = generate_keys() print(a) Python 3.8バージョンのエラー: Traceback (most recent call last): File "temp.py", line 18, in <module> a = generate_keys() File "temp.py", …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.