开放煎蛋

文章
5
资源
0
加入时间
2年10月18天

python中字典取最大值的应用

字典里面的值如何取最大值:举个列子:Dict= {‘a’: 12, ‘b’: 33,‘c’:55}第一种:用for循环去调取,先建一个列表,在列表取最大值:list = {'a': 12, 'b': 33,'c':55}ls=[]for item in list: ls.append(list[item])print('最大值:{0}'.format(max(ls)))第二种:用zip拆分的方法取最大值:list= {'a': 12, 'b': 33,'c':55}jj