创建一个标题
list1 = ['a','b','c',4,5,6]
列表中增加元素
list1.append(8)
list1
['a', 'b', 'c', 4, 5, 6, 8]
list1.insert(1,'f')
list1
['a', 'f', 'b', 'c', 4, 5, 6, 8]
列表中修改元素(1)
list1.pop(0)
print(list1)
['f', 'b', 'c', 4, 5, 6, 8]
list1.insert(0,'hellow world')
print(list1)
['hellow world', 'f', 'b', 'c', 4, 5, 6, 8]
列表中修改元素(2)
list1[0]='hellow world'
list1
['hellow world', 'f', 'b', 'c', 4, 5, 6, 8]
列表中删除元素
del list1[-1]
list1
['hellow world', 'f', 'b', 'c', 4, 5, 6]
list1.remove('b')
list1
['hellow world', 'f', 'c', 4, 5, 6]
list1.remove(list1[2])
list1
['hellow world', 'f', 4, 5, 6]
list1.pop(1)
list1
['hellow world', 4, 5, 6]
pop()和remove()删除的元素都可以拿来再使用但是:
1、pop()是在删除元素的同时将删除的元素放进一个可以使用的变量中存储
2、remove()是先将要删除的元素放进一个变量中,然后将变量放进remove()中执行删除,也可以直接将删除的元素放进remove()执行删除
pop_ele = list1.pop(2)
pop_ele
5
list1
['hellow world', 4, 6]
列表元素查找
list1[2]
6
list1[-1]
6
list1[0:2]
['hellow world', 4]
list2 = [i for i in range(10)]
list2
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
list2[0:9:3]
[0, 3, 6]
list2[-9:-1:2]
[1, 3, 5, 7]
len(list2)
10
3 in list2
True
11 in list2
False