问答详情
源自:7-2 Python读取dict元素

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

# 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"))


提问者:落尘烟雨 2023-11-28 11:28

个回答

  • 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)))