The use of the enumerate () function in Python

Source: Internet
Author: User

Enumerate function Description:

function Syntax: Enumerate (the value of the object that can be traversed, starting with the index number). Enumerate (sequence, [start=0])

Function: Sequence data and data subscript are listed separately in the sequence sequence starting with start.

That is, for a data object that can be traversed (such as a list, tuple, or string), enumerate combines the data object into an index sequence, listing both the data and the data subscript.

To illustrate:

1.

1 name=["a","b","C", " D " ]2 for in Enumerate (name):3     Print (i)
View Code

The result is:

' a ' ('b') ('c' ) (' D ')

Get a few tuples.

2.

1 name=["a","b","C", " D " ]23 for in Enumerate (name):45      Print(index,i)
View Code

The result is:

0 A1 b2 c3 D

This is the reason why you should add index.

3. The start value of any defined index number:

1 name=["a","b","C", " D " ]2 for in enumerate (name,1):3     Print (Index,i)
View Code

The result is:

1 a2 b3 c4 D

The use of the enumerate () function in Python

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.