本文将学习python中对列表中的元素进行增删查改操作
以l为例:l=[‘hello‘,‘tomorrow‘,‘!‘]
1.增加:
(1)在列表末尾增添元素:列表名.append(‘element‘)
l.append(‘hello‘)
print(l)
输出:
(2)在列表任意位置插入元素:列表名.insert(索引,‘element‘)
l.insert(1,"luu‘s")
print(l)
输出:
2.删除
(1)del 列表名[序号]
del l[1]
print(l)
(2)列表名.pop(序号)-------可以删除后接着使用它
print(l)
pop_element=l.pop(0)
print(l)
print(pop_element)
输出:
(3)列表名.remove(‘element‘)-------可以根据内容删除匹配的第一个元素
print(l)
l.remove(‘hello‘)
print(l)
输出结果:
3.查找
待学习
4.修改
(1)直接用索引,赋值进行修改
l[1]=‘future‘
print(l)
输出:
原文地址:http://blog.51cto.com/10707460/2121703
时间: 2024-11-05 16:22:36