标签:bsp 排序 index end python clear copy 指定 翻转
python3 列表操作
1.定义列表
list_1 = [ 1,2,3,4,5,6,7,8]
2.查找,增加,删除,修改
打印列表
print(list_1)
下标取值
list_1[0]
补偿切片
list_1[::2]
[1,3,5,7]
切片
list_1[1:3]
list_1[-3:-1]
翻转列表
list_1.reverse()
规则排序
list_1.sort()
查找下标
list_1.index(2)
统计次数
list_1.count(5)
清除列表
names.clear()
增加列表值
list_1.append(9)
指定位置增加
list_1.insert(1,9)
删除列表最后一个
list_1.pop()
下标删除
list_1.pop(1)
del list_1[5]
删除指定值
list_1.remove(2)
下标修改
list_1[2] = 9
复制(只复制第一层)
list_2 = list_1.copy()
全部copy
list_2 =copy.deepcopy(list_1)
合并列表
list_1.extend(list_2)
标签:bsp 排序 index end python clear copy 指定 翻转
原文地址:http://www.cnblogs.com/huangbipeng/p/7646689.html