當前位置:成語大全網 - 書法字典 - Python多字典

Python多字典

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

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

d3?=?{“ser“:“0003“,“name“:“阿利奇“,“sex“:“f“,“score“:“86“}

max_score?=?浮點型(-inf)

min_score?=?浮點型(inf)

麥克斯_學生?=?沒有人

min_student?=?沒有人

為了什麽?d?在?【d1,?d2,d3】:

得分?=?int(d【‘score‘】)

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

max_score?=?得分

麥克斯_學生?=?d

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

min_score?=?得分

min_student?=?d

打印(min?得分?學生?信息‘,最小學生)

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