python常用技巧整理

python常用技巧整理

  • list同时删除多个索引元素
  • list获取索引和元素enumerate
  • 字典获取k,v

list同时删除多个索引元素

list1 = [1, 1, 1, 2, 3, 4, 5, 8, 8] # 原始列表
index_to_delete = [0, 4, 6] # 需要同时删除的索引位置
list1 = [list1[i] for i in range(0, len(list1), 1) if i not in index_to_delete] # 删除后的列表
print(list1) # [1, 1, 2, 4, 8, 8]

list获取索引和元素enumerate

list1 = [1, 1, 1, 2, 3, 4, 5, 8, 8] # 原始列表
for index, item in enumerate(list1):
print(index,item)

字典获取k,v

d = {“a”:1, “b”:2} # 原始字典
for k, v in d.items():
print(k, v)

你可能感兴趣的:(Python)