Python Data structure

Source: Internet
Author: User

1. List, String, Tuple

List and string are similar, can use [index],tuple also can use [index],strign cannot change, we know, need to notice that the tuple is also immutable (immutable), such as:

A =[1,2,3]print#  1"test"print # T  = (11,22,33)print#  11

A[0]=5
Print (a) #[5, 2, 3]

But if you try to modify s and t you will get an error.

T[0] =print'tuple' not support item assignment

Defines a tuple that contains one element, similar to a string, but with one more comma:

' Hello ' , Print  ='test'print(str)

The running code will have the following output:

('hello',) test

2.Sets

You can use {} or set () to create a sets, but if you want to create an empty sets you must use Set () instead of {} (because {} will create an empty dictionary type Dict)

Python Data structure

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.