其他分享
首页 > 其他分享> > 列表元素的修改操作

列表元素的修改操作

作者:互联网

列表元素的修改操作
为指定索引的元素赋予一个新值
为指定的切片赋予一个新值
注意切片操作的过程中,只有步长为1的时候,才可以实现元素个数不相等的删除,增加,否则必须使增加或删除的元素个数相等才可以

example:

点击查看代码
lst = [1, 2, 3, 4, 5, 6, 7]
print(lst)
lst[2] = 2
print(lst)
lst[1:2] = [1, 2, 3, 4]
print(lst)
lst = [1, 2, 3, 4, 5, 6]
lst[::2] = [2, 4, 6]
print(lst)

标签:元素,新值,列表,切片,修改,lst,print
来源: https://www.cnblogs.com/FlnButFly/p/15846726.html