AttributeError
は、Pythonのドキュメント(here)のサンプルコードを使用すると発生します。次のようにコード例は次のとおりとos.scandir()はAttributeErrorを発生させます。__exit__
with os.scandir(path) as it:
for entry in it:
if not entry.name.startswith('.') and entry.is_file():
print(entry.name)
結果はAttributeError
ある:変数にos.scandir()
を割り当てることは正常に動作
D:\Programming>test.py
Traceback (most recent call last):
File "D:\Programming\test.py", line 3, in <module>
with os.scandir() as it:
AttributeError: __exit__
、けれども。 誰かが私に行方不明を教えてもらえますか?
それです。私はまだ3.5.2.3.6で完璧に動作していました、ありがとう! –