python中列表list、字典dict找最大值、最小值

一、list中找最值html c = [-10,-5,0,5,3,10,15,-20,25]spa print c.index(min(c))  # 返回最小值的索引code print c.index(max(c)) # 返回最大值的索引htm   二、字典中找最值blog dogdistance = {'dog-dog': 33, 'dog-cat': 36, 'dog-car': 41, '
相關文章
相關標籤/搜索