Home  >  Article  >  Backend Development  >  How to represent a list in Python

How to represent a list in Python

藏色散人
藏色散人Original
2019-07-04 11:06:104668browse

How to represent a list in Python

Sequence is the most basic data structure in Python. Each element in the sequence is assigned a number - its position, or index, with the first index being 0, the second index being 1, and so on.

Python has 6 built-in types for sequences, but the most common are lists and tuples.

Operations that can be performed on sequences include indexing, slicing, adding, multiplying, and checking members.

In addition, Python has built-in methods for determining the length of a sequence and determining the largest and smallest elements.

List is the most commonly used Python data type, which can appear as a comma-separated value within square brackets.

The data items of the list do not need to be of the same type

To create a list, just use square brackets to enclose the different data items separated by commas.

Looks like this:

list1 = ['physics', 'chemistry', 1997, 2000]
list2 = [1, 2, 3, 4, 5 ]
list3 = ["a", "b", "c", "d"]

Like the indexing of strings, list indexing starts from 0. Lists can be intercepted, combined, etc.

Related recommendations: "Python Tutorial"

The above is the detailed content of How to represent a list in Python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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