Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the ways for python to query whether the key-value pair is in the dictionary?

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article is to share with you about the method of querying whether the key-value pair of python is in the dictionary. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

We generally do key value query, will choose in or not in to operate, this article will also introduce three new query methods, let's take a look at it.

1. The keys () method is used to return all the key in the dictionary.

2. The values () method is used to return the value of all the keys in the dictionary.

3. Items () is used to return all key-value pairs (key-value) in the dictionary.

Example

Scores = {'Mathematics': 95, 'English': 92, 'Chinese': 84, 'Chemistry': 90, 'Biology': 91, 'Physics': 80} print ("judging whether a key-value pair is included in a dictionary") print ("whether mathematics is included in scores", "mathematics" in scores) print ("whether geography is included in scores", "geography" in scores) print ("whether history is included in scores" 'History 'not in scores) print (scores.keys ()) print (scores.values ()) print (scores.items ()) Thank you for reading! This is the end of this article on "python query key-value pairs are in the dictionary". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report