list python数据类型-列表( 二 )

获取某个元素的索引index()如果列表中有当前元素,则返回当前元素第一次出现的索引如果列表中没有当前元素 , 没有就报错hobbies = ['play', 'eat', 'sleep', 'study', 'eat', 'eat']print(hobbies.index('eat'))# 1print(hobbies.index('girl'))# 报错清空元素clear()hobbies = ['play', 'eat', 'sleep', 'study', 'eat', 'eat']hobbies.clear()print(hobbies)# []列表拷贝copy()列表拷贝属于浅拷贝, 修改列表里面的元素会相互影响 , 切记 , 这里不展开说 , 后面会详细说
hobbies = ['play', 'eat', 'sleep', 'study', 'eat', 'eat']l = hobbies.copy()# ['play', 'eat', 'sleep', 'study', 'eat', 'eat']print(l)
列表反转reverse()l = [1, 2, 3, 4, 5]l.reverse()print(l)# [5, 4, 3, 2, 1]列表排序sort()l = [100, 9, -2, 11, 32]l.sort()print(l)# [-2, 9, 11, 32, 100]l = [1, 4, 5, 2, 6]l.sort(reverse=True)print(l)# [6, 5, 4, 2, 1]
【list python数据类型-列表】


推荐阅读