For more information, see the following two methods:
It is often used in development to traverse the dictionary, list, and other data cyclically. However, in python, Dictionary traversal is very unfamiliar to many beginners, today, let's talk about the two methods of looping dictionary in python.
Note: In python2 and python3, the following two methods are common.
1. Only key Traversal
A simple for statement can loop all the keys of the dictionary, just like the processing sequence:
D = {'name1': 'pythontab', 'name2 ':'. ', 'name3': 'com'} for key in d: print (key, 'value:', d [key]) name1 value: pythontabname2 value :. name3 value: com
2. Traverse keys and values
If you only need a value, you can use d. values. If you want to obtain all the keys, you can use d. keys.
If you want to obtain the key and value d. items method, the key-value pair will be returned as a tuple. A major benefit of the for Loop is that sequential unpacking can be used in a loop.
Code example:
For key, value in d. items (): print (key, 'value: ', value) name1 value: pythontabname2 value:. name3 value: com
Note: The order of dictionary elements is usually not defined. In other words, keys and values in the dictionary can be processed during iteration, but the processing sequence is uncertain. If the order is important, you can save the key values in a separate list, such as sorting before iteration.
The above is all the content of this article. I hope it will be helpful for your learning and support for helping customers.