1. 创建一个列表
list1 = [‘physics’, ‘chemistry’, 1997, 2000]
list2 = [1, 2, 3, 4, 5 ]
list3 = [“a”, “b”, “c”, “d”]
列表可以进行截取、组合等
2. 访问列表中的值
使用下标索引来访问列表中的值,同样你也可以使用方括号的形式截取字符。
eg.
实例(Python 2.0+) #!/usr/bin/python list1 = ['physics', 'chemistry', 1997, 2000] list2 = [1, 2, 3, 4, 5, 6, 7 ] print "list1[0]: ", list1[0] print "list2[1:5]: ", list2[1:5]
输出结果
list1[0]: physics list2[1:5]: [2, 3, 4, 5]
3. 更新列表
可以对列表的数据项进行修改或更新。
append():添加列表项。
eg.
实例(Python 2.0+) #!/usr/bin/python # -*- coding: UTF-8 -*- list = [] ## 空列表 list.append('Google') ## 使用 append() 添加元素 list.append('Runoob') print list
输出结果:
['Google', 'Runoob']
4. 删除列表元素: del
eg.
实例(Python 2.0+) #!/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]
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)