DrZhang To check if a dictionary contains a certain key, we use the in keyword, like here with name in data. >>> data = { ... "name":"Zoc", ... "age":38 ... } >>> print("name" in data) True