Detailed explanation on the usage of enumerate function in Python

高洛峰
Release: 2017-03-16 16:05:05
Original
1973 people have browsed it

enumerateFunction is used to traverse the elements in the sequence and their subscripts. It is mostly used to get the count in the for loop. The enumerate parameter is a traversable variable, such as string , list, etc.

Generally, for a list or array when both index and elements need to be traversed , it will be written like this:

for i in range (0,len(list)): 
  print i ,list[i]
Copy after login

But this method is a bit cumbersome. Using the built-in enumerrate function will be more direct and elegant. Let’s first look at the definition of enumerate. :

def enumerate(collection): 
  'Generates an indexed series: (0,coll[0]), (1,coll[1]) ...'   
   i = 0 
   it = iter(collection) 
   while 1: 
   yield (i, it.next()) 
   i += 1
Copy after login


enumerate will group the array or list into an index sequence. This makes it more convenient for us to obtain the index and index content as follows:

for index,text in enumerate(list): 
  print index ,text
Copy after login


Code Example 1:

i = 0
seq = ['one', 'two', 'three']
for element in seq:
    print i, seq[i]
    i += 1
Copy after login

0 one

1 two

2 three


##Code example 2:

seq = ['one', 'two', 'three']
for i, element in enumerate(seq):
    print i, seq[i]
Copy after login

0 one

1 two

2 three

##Code example 3:

for i,j in enumerate('abc'):
    print i,j
Copy after login
0 a

1 b

2 c

The above is the detailed content of Detailed explanation on the usage of enumerate function in Python. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!