How to create a list in python

藏色散人
Release: 2019-06-24 13:56:04
Original
6769 people have browsed it

How to create 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 in 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.

Python creates a list as follows:

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

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

Related recommendations: "Python Tutorial"

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

Related labels:
source:php.cn
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 [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!