>>> letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
>>> letters
['a', 'b', 'c', 'd', 'e', 'f', 'g']
>>> # replace some values
>>> letters[:] = ['C', 'D', 'E']
>>> letters
['a', 'b', 'C', 'D', 'E', 'f', 'g']
>>> # now remove them
>>> letters[:] = []
>>> letters
['a', 'b', 'f', 'g']
>>> # clear the list by replacing all the elements with an empty list
>>> letters[:] = []
>>> letters
[]
相关文章
- 12-11Python06-09_序列----列表元素的访问和计数
- 12-11python 列表字符串元素乱序
- 12-11python 列表是否具有相同元素(day07_dome02)
- 12-11python3 list列表随机选取一个元素、随机选择一个user-agent
- 12-11python中如何去除列表中重复元素?
- 12-11PYTHON 写函数,检查用户传入的对象(字符串、列表、元组)的每一个元素是否含有空内容。
- 12-11python pandas如何从数据框中删除异常值并替换为先前记录的平均值
- 12-11Python自学:第三章 修改列表元素
- 12-11Python的方式来交叉并同时添加列表元素
- 12-11python-无论元素顺序如何,获取列表中的元组数