python-tuple tuples

Source: Internet
Author: User

The knowledge of the list is actually similar to the array in C, which can be inserted and modified. LIST=[A,B,C,D]

Tuple tuples, once initialized, cannot be modified. Benefits and absolute safety.

Define an empty tuple: t= ()

Define a tuple with only one element: t= (1,), Python will recognize this element by adding a comma after the parenthesis element, or Python will treat t= (1) as the number of elements in the tuple.

Define a tuple with a list: t= (A,b,c,[x,y]), where you can modify the elements of the list in a tuple, such as t[3][0]= ' X ', t[3][1]= ' Y ', which is a tuple t= (A,b,c,[x,y])

python-tuple tuples

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.