python中遍历字典,指定键不遍历
我想遍历一个字典,但是指定的键我不想遍历,有没有什麼好的办法呢?下面是我做的,我是做了判断的dict1={'张三':1,'李四':2,'王五':3,'马六':4,'牛七'...
我想遍历一个字典,但是指定的键我不想遍历,有没有什麼好的办法呢?下面是我做的,我是做了判断的
dict1 = {'张三': 1, '李四': 2, '王五': 3, '马六': 4, '牛七': 5}
list1 = []
for key, val in dict1.items():
if key not in ['张三', '王五']:
list1.append(key)
print (list1) 展开
dict1 = {'张三': 1, '李四': 2, '王五': 3, '马六': 4, '牛七': 5}
list1 = []
for key, val in dict1.items():
if key not in ['张三', '王五']:
list1.append(key)
print (list1) 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询