當前位置:成語大全網 - 書法字典 - Python字典接受許多值。

Python字典接受許多值。

d1?=?{'ser':'0001 ',' name':'Tom ',' sex':'m ',' score':'76'}

d2?=?{'ser':'0002 ',' name':'Jak ',' sex':'m ',' score':'87'}

d3?=?{'ser':'0003 ','姓名':'阿利奇','性別':' f ','分數':' 86'}

最大分數?=?float('-inf ')

min_score?=?浮點型(' inf ')

max_student?=?沒有人

min _學生?=?沒有人

為了什麽?d?在?[d1,?d2,d3]:

得分?=?int(d['score'])

如果?得分?& gt?最高分數:

最大分數?=?得分

max_student?=?d

如果?得分?& lt?最小分數:

min_score?=?得分

min _學生?=?d

打印(' min?得分?學生?信息',min_student)

打印(' max?得分?學生?Info ',max_student)應該能滿足妳的需求。