How python traverses a collection and its subscript
This article mainly introduces how python traverses a set and its subscript, which is very detailed and has certain reference value. Friends who are interested must read it!
Traverse a set and its subscript
Colors = ['red',' green', 'blue',' yellow'] for i in range (len (colors)): print I,'-->', colors [I]
A better way
For I, color in enumerate (colors): print I,'-->', color
This method of writing is efficient, elegant, and saves you the need to create and increase your own subscript.
When you find that you are manipulating the subscript of the collection, you are likely to be doing something wrong.
The above is all the content of the article "how python traverses a collection and its subscript". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!