Example Analysis of enumerate function usage in python

Source: Internet
Author: User
This article mainly introduces the usage of the enumerate function in python, and analyzes in detail the functions, definitions, and usage skills of the enumerate function in the form of instances, for more information about how to use the enumerate function in python, see the following example. Share it with you for your reference. The specific analysis is as follows:

A new function enumerate was found today. In general, if you want to traverse both the index and element of a list or array, write as follows:

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

However, this method is somewhat cumbersome. It is more straightforward and elegant to use the built-in enumerrate function. Let's take a 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

Enumerate combines an array or list into an index sequence. This makes it easier to obtain the index and index content as follows:

for index,text in enumerate(list)):   print index ,text

In cookbook, if you want to calculate the number of lines in the file, you can write it as follows:

count = len(open(thefilepath,'rU').readlines())

The preceding method is simple, but may be slow. When the file is large or cannot work, the following method is more suitable for reading cyclically.

Count = -1 For count,line in enumerate(open(thefilepath,'rU')):   PassCount += 1

I hope this article will help you with python programming.

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.