Python判断字典中是否有重复值
输入为字典例如:{'A': 1, 'B': 1, 'C': 3},如何判断字典中是否有重复值(values)?
m = {'A': 1, 'B': 1, 'C': 3}
def isrepeatvalues (dic):
l = list(dic.values())
ll = list(set(l))
if len(l)==len(ll):
return False
else:
return True
print(isrepeatvalues(dic=m))
我也是新手练手操作,希望能有更好更快捷的方法