30秒学会 Python 片段 · 2022年6月17日

30秒学会 Python 片段 – Key in dictionary

Checks if the given key exists in a dictionary.

  • Use the in operator to check if d contains 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

翻译自:https://www.30secondsofcode.org/python/s/key-in-dict