このエラーの原因は何ですか?このコードのような行をコメントアウトするのは可能でしょうか?AttributeError: 'str'オブジェクトに '__name__'属性がありません
for i in (Class_1, """Class_2, Class_3"""):
name = i.__name__
Class_1
、Class_2
とClass_3
は、上のコードの前に宣言されたクラスです。
エラー出力:
> Traceback (most recent call last):
File "", line 2, in <module>
name = i.__name__
AttributeError: 'str' object has no attribute '__name__'
Process finished with exit code 1
Error message line edited to fit the example code
"" "" "Side2、Side3、Side4、Side5" "" 'の目的は何ですか?それはそれらの名前を隠すかコメントアウトする試みですか? –