list, tuple, array in Python--Is it particularly easy to confuse??

Source: Internet
Author: User
List:

1. That is, list, which is the data type built into Python. Its form is: a = [1, 2, 3, 4, 5]

2. The values in the list can be changed, that is, you can: a[0] = 100, change the No. 0 element of the list to 100

3.

Meta-group:

That is, a tuple, also a python built-in type, in the form of: B = 1, 2, 3, 4, 5 (this is its original sample) but sometimes the parentheses are added: B = (1, 2, 3, 4, 5)

The value within the tuple cannot be changed; b[0] = 100, this is wrong;

list, tuple, array in Python--Is it particularly easy to confuse??

Related Article

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.