Python dictionary key-Value Pair addition and traversal methods, python dictionary

Source: Internet
Author: User

Python dictionary key-Value Pair addition and traversal methods, python dictionary

Add a key-Value Pair

First define an empty dictionary

>>> Dic = {}

Directly assign values to keys that do not exist in the dictionary.

>>> dic['name']='zhangsan'>>> dic{'name': 'zhangsan'}

This method can also be used if both the key and value are variables.

>>> key='age'>>> value=30>>> dic[key]=value>>> dic{'age': 30, 'name': 'zhangsan'}

Here we can see that the data in the dictionary is not arranged in order. If you are interested, you can search for the hash table in the data structure.

You can also use the setdefault method of the dictionary.

>>> dic.setdefault('sex','male')'male'>>> key='id'>>> value='001'>>> dic.setdefault(key,value)'001'>>> dic{'id': '001', 'age': 30, 'name': 'zhangsan', 'sex': 'male'}

Traverse dictionary

There are two methods

Method 1:Obtain the key first, and then obtain the value through dic [key ].

>>> for key in dic:...   print 'key is %s,value is %s'%(key,dic[key])...key is id,value is 001key is age,value is 30key is name,value is zhangsankey is sex,value is male

Method 2:Sequentially unpackage the list of tuples returned by the items () method.

>>> for key,value in dic.items():...   print 'key is %s,value is %s'%(key,value)...key is id,value is 001key is age,value is 30key is name,value is zhangsankey is sex,value is male

If you are not familiar with list, tuples, and sequence unpacking, you 'd better understand them in depth. It can be understood in combination with arrays, List classes, and hash tables in your familiar C # or JAVA language.

The method for adding and traversing the above python dictionary key-value pairs is all the content that I have shared with you. I hope to give you a reference and support for the help house.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.