Python 练习

1. 题目

找到年龄最大的人,并输出。

2. 分析

3. 实例

点我看答案
person = {"li": 18, "wang": 50, "zhang": 20, "sun": 22}
m = 'li'
for key in person.keys():
    if person[m] < person[key]:
        m = key

print(f'{m}\t{person[m]}')

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""