Python:常見error彙總

TypeError: string indices must be integers 
#TypeError:字符串索引必須是整數
TypeError: 'str' object does not support item assignment
#TypeError:“str”對象不支持項分配
test_dict = {}
test_dict['a'] = 'a'
test_dict['a']['b'] = 'b'
print(test_dict)
KeyError: 'network'

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章