我们通常选择in或not查询键值 in来操作,本文还介绍了三种新的查询方法,下面大家一起来看看。
1、keys()方法用于返回字典中的所有键(key)。
2、values()该方法用于返回字典中所有键对应的值(value)。
3、items()用于返回字典中所有键对(key-value)。
实例
scores={'数学':95,'英语':92,'语文':84,'化学':90,'生物':91,'物理':80} print("判断字典中是否包含一个键对") print("scores是否包括数学",'数学'inscores) print("scores是否包括地理?",'地理'inscores) print("scores是否包括历史?",'历史'notinscores) print(scores.keys()) print(scores.values()) print(scores.items())
以上是python查询键值是否在字典中的三种方法,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。