Skip to content

修改列表

由于列表是可变的,可以使用赋值运算符来修改或替换列表中给定索引处的单个项。

python
>>> l = ["宝马", "Z4", "红色"]
>>> l[2] = "黑色"
>>> l
['宝马', 'Z4', '黑色']