How python traverses a collection
This article mainly introduces how to traverse a collection of python, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.
Traverse a collection
Colors = ['red',' green', 'blue',' yellow'] for i in range (len (colors)): print colors [I]
A better way
For color in colors: print color thank you for reading this article carefully. I hope the article "how to traverse a collection of python" shared by the editor will be helpful to you. At the same time, I also hope that you will support and follow the industry information channel. More related knowledge is waiting for you to learn!