列表是一种最基础的数据结构,具有以下特点:
创建一个列表,只要把逗号分隔的不同的数据项使用方括号括起来即可。如下所示:
list1 = [‘Google‘, ‘Runoob‘, 1997, 2000];
list2 = [1, 2, 3, 4, 5 ];
list3 = ["a", "b", "c", "d"];
查询列表中的元素,例:
list1 = [‘Google‘, ‘Runoob‘, 1997, 2000];
list2 = [1, 2, 3, 4, 5, 6, 7 ];
print ("list1[0]: ", list1[0])
print ("list2[1:5]: ", list2[1:5])
输出结果为:
list1[0]: Google
list2[1:5]: [2, 3, 4, 5]
索引序号对应如下:
0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
sample_list = [1,2,3,4,5,6,7,8,9]
-9 | -8 | -7 | -6 | -5 | -4 | -3 | -2 | -1 |
原文:https://www.cnblogs.com/wangfei1248/p/9716088.html