在 Python 中,是否可以在列表中的列表中插入值?
例如:
List = [['Name',[1, 4, 6]],
['Another Name', [1,2,5]]]
我试过使用:
List.insert([0][1], 'another value')
但它不喜欢那样,有没有另一种方法来操作列表中的列表?
在 Python 中,是否可以在列表中的列表中插入值?
例如:
List = [['Name',[1, 4, 6]],
['Another Name', [1,2,5]]]
我试过使用:
List.insert([0][1], 'another value')
但它不喜欢那样,有没有另一种方法来操作列表中的列表?
绝对有可能:
>>> List = [['Name',[1, 4, 6]],
... ['Another Name', [1,2,5]]]
>>> List[0].insert(1,"Another Value")
>>> List
[['Name', 'Another Value', [1, 4, 6]], ['Another Name', [1, 2, 5]]]
您只需要下标“外部”列表即可获得对要插入的“内部”列表的引用。
我们可以将上面的代码分解为以下步骤:
inner = List[0]
inner.insert(1,'Another Value')
如果这让你更清楚我在那里实际做了什么......