Python for Loop

Source: Internet
Author: User

For name in L:

For can iterate list and tuple

For loop
A list or tuple can represent an ordered set. What if we want to access each element of a list in turn? such as list:
L = [' Adam ', ' Lisa ', ' Bart ']
Print L[0]
Print L[1]
Print L[2]
If the list contains only a few elements, it is OK to write, and if the list contains 10,000 elements, we cannot write 10,000 lines of print.
This is where the loop comes in handy.
The python for loop can then iterate over each element of the list or tuple in turn:
L = [' Adam ', ' Lisa ', ' Bart ']
For name in L:
Print Name
Note: Name this variable is defined in the For loop, meaning that each element in the list is taken out, the element is assigned to name, and then the for loop body is executed (that is, the indented block of code).
This makes it very easy to traverse a list or tuple.

Python for Loop

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.