目录
1.判断键是否在字典中
2.判断值是否在字典中
3.判断键值对是否在字典中
我们先建立一个字典:
spam = {’name’:’Zophie’,’age’:7,'color':'red'}
<键> in <字典名>
或
<键> in <字典名>.keys()
例:
>>> ’name’ in spam.keys()
True
>>> ’age’ in spam
<值> in <字典名>.values()
例:
>>> ’Zophie’ in spam.values()
True
(<键>,<值>) in <字典名>.items()
例:
>>> ('color','red') in spam.items()
True