字典中的键
检查给定的键是否存在于字典中。
- 使用
in
运算符来检查d
是否包含key
。
def key_in_dict(d, key):
return (key in d)
d = {'one': 1, 'three': 3, 'five': 5, 'two': 2, 'four': 4}
key_in_dict(d, 'three') # True
检查给定的键是否存在于字典中。
in
运算符来检查d
是否包含key
。def key_in_dict(d, key):
return (key in d)
d = {'one': 1, 'three': 3, 'five': 5, 'two': 2, 'four': 4}
key_in_dict(d, 'three') # True