时间:2021-07-01 10:21:17 帮助过:69人阅读
ist1 = ['physics', 'chemistry', 1997, 2000] list2 = [1, 2, 3, 4, 5 ] list3 = ["a", "b", "c", "d"]
与字符串的索引一样,列表索引从0开始。列表可以进行截取、组合等。
如何让Python添加列表元素呢?
可以使用append()方法来添加列表项,如下所示:
#!/usr/bin/python # -*- coding: UTF-8 -*- list = [] ## 空列表 list.append('Google') ## 使用 append() 添加元素 list.append('tomorin') print list
以上实例输出结果:
['Google', 'tomorin']
既然知道了Python添加列表元素,也必须掌握Python删除列表元素
使用 del 语句来删除列表的元素,如下实例:
#!/usr/bin/python list1 = ['physics', 'chemistry', 1997, 2000] print list1 del list1[2] print "After deleting value at index 2 : " print list1
以上实例输出结果:
['physics', 'chemistry', 1997, 2000]
After deleting value at index 2 :
['physics', 'chemistry', 2000]
课后知识扩展,
Python中的列表与元组有什么区别?一文搞懂元组与列表的异同点
以上就是近年火热的Python列表知识,并有删添列表元素示例详解的详细内容,更多请关注Gxl网其它相关文章!