Python课程学习笔记——列表操作
#1、创建列表
同一个列表中可以存放任意基本数据类型
list1=[];
list2=[1,1.1,‘1.1.2’,1+2j];
list3=[1,2,3,4];
list4=[“a”,“b”,“c”,“d”];
#2、通过索引下标访问列表元素
一次访问一个元素
print(“list2[2]:”,list2[2]);
print(“list3[2]:”,list3[2]);
print(“list4[2]:”,list4[2]);
print("")
#3、指定范围 一次访问多个元素
注意左闭右开,右边索引不包含
print(“list2[0,2]:”,list2[0:2]);#这里用的是0:2 不是0,2
print("")
#4、更改元素
print(“test change element:”)
print(“before list4:”,list4);
list4[1] = ‘change’
print(“after list4:”,list4);
list4[1] = ‘b’
print("")
#5、删除元素 del remove(obj) clear()清空列表
print(“test del element:”)
print(“before list4:”,list4);
del list4[1];
print(“after list4:”,list4);
list4.remove(“c”);
print(“remove after list4:”,list4);
list4.clear();
print(“clear after list4:”,list4);
print("")
#6、向列表中添加元素
append添加在末尾 insert(index,object) 指定索引下标插入元素
print(“test add element:”)
list4.append(“a”);
list4.append(“c”);
print(“append after list4:”,list4);
list4.insert(1, “b”);
list4.insert(3,“d”);
print(“insert after list4:”,list4);
#7、其他操作
print(“列表长度即元素个数len(list4):”,len(list4));
注意:
print("before max list4:",list4);
list4.append(1);
print("列表最大元素max(list4):",max(list4));
执行结果:
before max list4: ['a', 'b', 'c', 'd']
Traceback (most recent call last):
File "D:\Epan\selfstudy\pythonStudy\helloPython\helloPython\ListPython.py", line 62, in <module>
print("列表最大元素max(list4):",max(list4));
TypeError: '>' not supported between instances of 'int' and 'str'
print(“列表最大元素max(list4):”,max(list4));
print(“列表最小元素min(list4):”,min(list4));
print(“元素出现的次数count(a):”,list4.count(“a”));
print(“元素在列表中第一次出现的索引list4.index©:”,list4.index(“c”));
注意:
print("before index:",list4);
print("元素在列表中第一次出现的索引list4.index(cd):",list4.index("cd"));
before index: ['a', 'b', 'c', 'd']
Traceback (most recent call last):
File "D:\Epan\selfstudy\pythonStudy\helloPython\helloPython\ListPython.py", line 74, in <module>
print("元素在列表中第一次出现的索引list4.index(cd):",list4.index("cd"));
ValueError: 'cd' is not in list
print(“复制列表list4.copy():”,list4.copy());
#print(“反转列表list4.reverse():”,list4.reverse());这个写法打印结果为None
list4.reverse()
print(“反转列表list4.reverse():”,list4);
print("")
print("")
#8、列表拼接 +即可
print(“before list3:”,list3);
print(“beforelist4:”,list4);
print(“after list3+list4:”,list3 + list4);
#9、列表乘法
相当于列表复制几遍 并不是列表中的每个元素乘法运算
print("after list42:",list42);
#10、判断元素是否存在列表中
print(“c in list4?”,‘c’ in list4);
#11、列表嵌套 相当于新建一个列表,元素为指定的要嵌套的列表
list6 = [list3,list4];
print(“列表嵌套[list3,list4]:”,list6);
#12、迭代
for element in list4:
print(element )
迭代写法特别注意:
(1)list4后面的冒号:不能少,否则报下面的错
(2)打印元素的语句:print(element) 必须缩进,否则报下面的错误:
执行结果:
list2[2]: 1.1.2
list3[2]: 3
list4[2]: c
list2[0,2]: [1, 1.1]
test change element:
before list4: [‘a’, ‘b’, ‘c’, ‘d’]
after list4: [‘a’, ‘change’, ‘c’, ‘d’]
test del element:
before list4: [‘a’, ‘b’, ‘c’, ‘d’]
after list4: [‘a’, ‘c’, ‘d’]
remove after list4: [‘a’, ‘d’]
clear after list4: []
test add element:
append after list4: [‘a’, ‘c’]
insert after list4: [‘a’, ‘b’, ‘c’, ‘d’]
列表长度即元素个数len(list4): 4
列表最大元素max(list4): d
列表最小元素min(list4): a
元素出现的次数count(a): 1
元素在列表中第一次出现的索引list4.index©: 2
复制列表list4.copy(): [‘a’, ‘b’, ‘c’, ‘d’]
反转列表list4.reverse(): None
反转列表list4.reverse(): [‘a’, ‘b’, ‘c’, ‘d’]
before list3: [1, 2, 3, 4]
beforelist4: [‘a’, ‘b’, ‘c’, ‘d’]
after list3+list4: [1, 2, 3, 4, ‘a’, ‘b’, ‘c’, ‘d’]
after list4*2: [‘a’, ‘b’, ‘c’, ‘d’, ‘a’, ‘b’, ‘c’, ‘d’]
c in list4? True
列表嵌套[list3,list4]: [[1, 2, 3, 4], [‘a’, ‘b’, ‘c’, ‘d’]]
迭代list4元素:
a
b
c
d