直接使用Python3 字典get方法即可实现

来源:7-2 Python读取dict元素

落尘烟雨

2023-11-28 11:28

# Enter a code
d = {"Alice": 45, "Bob": 60, "Candy": 75, "David": 86, "Ellena": 49}
print(d.get("Alice", "None")) # dict.get(key,默认返回值),不指定默认返回值则默认返回None
print(d.get("Bob", "None"))
print(d.get("Candy", "None"))
print(d.get("Mimi", "None"))
print(d.get("David", "None"))


写回答 关注

1回答

  • weixin_慕仰3352044
    2023-12-03 20:17:54

    d = {
        'Alice': 45,
        'Bob': 60,
        'Candy': 75,
        'David': 86,
        'Ellena': 49
    }
    names = ['Alice', 'Bob', 'Candy', 'Mimi', 'David']
    for item in names:
        print('{} score:{}'.format(item,d.get(item)))


Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154161 学习 · 1075 问题

查看课程

相似问题