我試圖更新的列表,包括對值如下:更新配對列表蟒蛇
list = [('n1',1),('n2',2),('n3',3),('n4',4),('n5',5)]
現在我想更新與N1到16值因此我竭力試圖使像這樣:
>>> list['n1'] = 16
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: list indices must be integers or slices, not str
什麼是使用鍵值類型的功能訪問列表的方式?
您正在尋找'dict',否則循環並根據匹配的項目進行更新。 –
但我只想訪問列表 –
我試着用'dict',但是我的休息模塊需要這個值作爲'list'而不是'dict' –