# 定义空的list
list1 = []

print(type(list1)) #<class 'list'>
print(list1) #[]

# 添加元素
list1.append('a');
list1.append('b');
list1.append('c');
list1.append('b');
print(list1) #['a', 'b', 'c', 'b']

# 移除元素,注意:只会移除第一个相同的元素
list1.remove('b');
print(list1) #['a', 'c', 'b']

# 查找
print(list1[1]); #c


你可能感兴趣的文章