python3 TypeError: 'type' object is not subscriptable
526 ワード
タイプエラーかと思いきや、後でよく見ると、リスト名が間違っていることがわかりました.汗、list 1[2]に変えればよかった
list1 = ['Google', 'Runoob', 1997, 2000];
list2 = [1, 2, 3, 4, 5 ];
list3 = ["a", "b", "c", "d"];
print (" : ", list[2]);
list[2] = 2001;
print (" : ", list[2]);
:
print (" : ", list[2]);
TypeError: 'type' object is not subscriptable
このような問題の解決の構想、対応する位置を見つけて、デバッグを行って、普通は空の値の原因で、あなたがどれに属しているかを見てみましょうか?