In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces python how to use the update function, the article is very detailed, has a certain reference value, interested friends must read it!
The built-in function update of the dictionary
The function of the update function: add a new dictionary. If the new dictionary has the same key as the original dictionary, the value of the key will be overwritten by the value of the new dictionary.
Usage of the update function: dict.update (new_dict), which has no return value; new_dict is the new dictionary
Examples are as follows:
Default_dict = {} new_dict = {'name':' Neo'} default_dict.update (new_dict) print (default_dict) # the execution result is as follows: # > {'name':' Neo'} user = {'name':' Neo', 'age': 18,' birthday': '2000-01-01'} user_jack = {'name':' Jack', 'age': 17,' birthday': '2001-12-12' The execution result of 'sex':' man'} user.update (user_jack) print (user) # is as follows: # > > {'name':' Jack', 'age': 17,' birthday': '2001-12-12,' sex': 'man'} above are all the contents of the article "how python uses update functions" Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.