Python - sequence
sequence Sequence
sequence (sequence) is a set of ordered elements
(strictly speaking, it is a collection of objects, but since we have not introduced the concept of "object" yet, let's talk about elements for now)
A sequence can contain One or more elements, or no elements.
The basic data types we mentioned before can all be used as elements of a sequence. An element can also be another sequence, as well as other objects that we will introduce later.
There are two types of sequences: tuple (fixed value table; also translated as tuple) and list (table)
>>>s1 = (2, 1.3, 'love', 5.6, 9, 12, False) # s1是一个tuple >>>s2 = [True, 5, 'smile'] # s2是一个list >>>print s1,type(s1) >>>print s2,type(s2)
The main difference between tuple and list is that once created, each element of tuple cannot be changed. Each element of the list can be changed.
A sequence as an element of another sequence
>>>s3 = [1,[3,4,5]]
Empty sequence
>>>s4 = []
Reference of elements
The subscripts of sequence elements start from 0:
>>>print s1[0] >>>print s2[2] >>>print s3[1][2]
Due to list The elements can be changed. You can assign a value to an element of the list:
>>>s2[1] = 3.0 >>>print s2
If you do this operation on a tuple, you will get an error message.
So, you can see that the reference of the sequence is implemented through s[
Other reference methods
Scope reference: Basic style [lower limit:upper limit:step size]
>>>print s1[:5] # 从开始到下标4 (下标5的元素 不包括在内) >>>print s1[2:] # 从下标2到最后 >>>print s1[0:5:2] # 从下标0到下标4 (下标5不包括在内),每隔2取一个元素 (下标为0,2,4的元素) >>>print s1[2:0:-1] # 从下标2到下标1
From As you can see above, when citing a range, if the upper limit is specified, the upper limit itself is not included.
Trail element reference
>>>print s1[-1] # 序列最后一个元素 >>>print s1[-3] # 序列倒数第三个元素
Similarly, if s1[0:-1], then the last element will not be referenced (again, not including the upper element itself)
Strings are tuples
Strings are a special kind of element and therefore can perform tuple-related operations.
>>>str = 'abcdef' >>>print str[2:4]

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]
