Table of Contents
sequence sequence
Reference of element
Other reference methods
Summary
Home Backend Development Python Tutorial Detailed explanation of Python basic sequence (sequence)

Detailed explanation of Python basic sequence (sequence)

Mar 17, 2017 pm 04:38 PM

sequence sequence

sequence (sequence) is a set of ordered elements

(Strictly speaking, it is a collection of objects, but since we have not yet introduced the concept of "object" , let’s talk about elements for now)

The sequence can contain one or more elements, or it can have no elements.

The basic data types we mentioned before can all be used as elements of the 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)
Copy after login

The main difference between tuple and list is that once It is established that each element of the tuple cannot be changed, but each element of the list can be changed.

A sequence as an element of another sequence

>>>s3 = [1,[3,4,5]]
Copy after login

Empty sequence

>>>s4 = []
Copy after login

Reference of element

The subscript of sequence element starts from 0:

>>>print s1[0]
>>>print s2[2]
>>>print s3[1][2]
Copy after login

Since the elements of the list can be changed, you can assign a value to an element of the list:

>>>s2[1] = 3.0
>>>print s2
Copy after login

If you do this operation on a tuple, you will get an error message.

So, you can see that the sequence reference is implemented through s[], int is the subscript

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
Copy after login

As you can see from the above, when the range is quoted, if the upper limit is specified, then the upper limit itself is not included.

Tail element reference

>>>print s1[-1]             # 序列最后一个元素
>>>print s1[-3]             # 序列倒数第三个元素
Copy after login

Similarly, if s1[0:-1], then the last element will not be referenced (again, not including the cap element itself)

String is a tuple

String is a special element, so you can perform tuple-related operations.

>>>str = 'abcdef'
>>>print str[2:4]
Copy after login

Summary

tuple elements are immutable, list elements are mutable

Sequence reference s[2], s[1:8:2]

String is a tuple


The above is the detailed content of Detailed explanation of Python basic sequence (sequence). For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the permissions problem encountered when viewing Python version in Linux terminal? How to solve the permissions problem encountered when viewing Python version in Linux terminal? Apr 01, 2025 pm 05:09 PM

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

How to efficiently copy the entire column of one DataFrame into another DataFrame with different structures in Python? How to efficiently copy the entire column of one DataFrame into another DataFrame with different structures in Python? Apr 01, 2025 pm 11:15 PM

When using Python's pandas library, how to copy whole columns between two DataFrames with different structures is a common problem. Suppose we have two Dats...

How to teach computer novice programming basics in project and problem-driven methods within 10 hours? How to teach computer novice programming basics in project and problem-driven methods within 10 hours? Apr 02, 2025 am 07:18 AM

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? Apr 02, 2025 am 07:15 AM

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

How does Uvicorn continuously listen for HTTP requests without serving_forever()? How does Uvicorn continuously listen for HTTP requests without serving_forever()? Apr 01, 2025 pm 10:51 PM

How does Uvicorn continuously listen for HTTP requests? Uvicorn is a lightweight web server based on ASGI. One of its core functions is to listen for HTTP requests and proceed...

What are some popular Python libraries and their uses? What are some popular Python libraries and their uses? Mar 21, 2025 pm 06:46 PM

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

How to dynamically create an object through a string and call its methods in Python? How to dynamically create an object through a string and call its methods in Python? Apr 01, 2025 pm 11:18 PM

In Python, how to dynamically create an object through a string and call its methods? This is a common programming requirement, especially if it needs to be configured or run...

How to solve permission issues when using python --version command in Linux terminal? How to solve permission issues when using python --version command in Linux terminal? Apr 02, 2025 am 06:36 AM

Using python in Linux terminal...

See all articles