search
HomeBackend DevelopmentPython TutorialCommon methods of python list
Common methods of python listMar 16, 2019 pm 04:34 PM
list

Commonly used methods in Python list include creating a list, adding new elements, viewing values ​​in the list, deleting elements in the list, sorting and reversing, and list slicing.

Lists are the most commonly used Python Data type, which can appear as a comma-separated value within square brackets. In the following article, we will introduce the common methods of lists in Python in detail. It has a certain reference effect and I hope it will be helpful to everyone.

Common methods of python list

[Recommended course: Python Tutorial]

Common methods of Python list

(1) Create a list

Use commas to separate different data before use Just enclose it in square brackets. The subscript starts from 0. The subscript of the last element can be written as -1

list  =  ['1',‘2,‘3’]
list = [] //空列表

(2) Add a new element

There are three ways to add new elements, namely:

append method: add an element at the end of the list

list.append()

insert method: means to add an element at the specified position, if not specified Add

list.insert(n,'4')

extend method at the end of the list: merge elements in list 1 and list 2

list1.extend(list2)

(3) View the values ​​in the list

You can use the print method to traverse the list. This method is equivalent to for i in list

print(list[n]): means using the subscript index to access the value in the list

print(list.count(xx)): Indicates checking the number of an element in this list. If the element does not exist, it returns 0

print(list.index(xx)): Indicates Find the subscript of this element. If there are multiple ones, return the first one. If you find an element that does not exist, an error will be reported

(4) Delete the element in the list

list.pop(): Delete the last element

list.pop(n): Specify the subscript and delete the specified element. If you delete a non-existent element, an error will be reported

list .remove(xx): Delete an element in the list. If there are multiple identical elements, delete the first one

del list[n]: Delete the element corresponding to the specified subscript

del list: Delete the entire list. After the list is deleted, it cannot be accessed

(5) Sorting and reversing

list.reverse(): Indicates reversing the list

list.sort(): Indicates sorting, ascending order by default

list.sort(reverse=True): Indicates descending order

Note: There are strings and numbers in the list cannot be sorted, the sorting is for the same type

(6) list slicing

Slicing is a method of list value

name[n: m]: Indicates that the slice does not contain the value of the subsequent element

name[:m]: Indicates that if the previous value of the slice is default,

name[n:] will be taken from the beginning. : Indicates that if the value after the slice is defaulted, it will be taken to the end

name[:] : It means that if all values ​​are defaulted, all

name[n:m:s] will be taken: Indicates how many elements to take once, where s represents the step size

If the step length is a positive number, it is taken from left to right

If the step length is a negative number, it is taken from right to left

Note: Slicing also applies to strings, and strings also have subscripts

Summary: The above is the entire content of this article, I hope it will be helpful to everyone.

The above is the detailed content of Common methods of python list. 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
php如何实现Redis的List操作php如何实现Redis的List操作May 26, 2023 am 11:51 AM

List操作//从list头部插入一个值。$ret=$redis->lPush('city','guangzhou');//从list尾部插入一个值。$ret=$redis->rPush('city','guangzhou');//获取列表指定区间中的元素。0表示列表第一个元素,-1表示最后一个元素,-2表示倒数第二个元素。$ret=$redis->l

java中JSONArray互相转换List怎么实现java中JSONArray互相转换List怎么实现May 04, 2023 pm 05:25 PM

1:JSONArray转ListJSONArray字符串转List//初始化JSONArrayJSONArrayarray=newJSONArray();array.add(0,"a");array.add(1,"b");array.add(2,"c");Listlist=JSONObject.parseArray(array.toJSONString(),String.class);System.out.println(list.to

如何使用C#中的List.Sort函数对列表进行排序如何使用C#中的List.Sort函数对列表进行排序Nov 17, 2023 am 10:58 AM

如何使用C#中的List.Sort函数对列表进行排序在C#编程语言中,我们经常需要对列表进行排序操作。而List类的Sort函数正是为此设计的一个强大工具。本文将介绍如何使用C#中的List.Sort函数对列表进行排序,并提供具体的代码示例,帮助读者更好地理解和应用该函数。List.Sort函数是List类的一个成员函数,用于对列表中的元素进行排序。该函数接

为什么在Python中list.sort()不会返回已排序的列表?为什么在Python中list.sort()不会返回已排序的列表?Sep 18, 2023 am 09:29 AM

示例在这个例子中,我们先看看list.sort()的用法,然后再继续。在这里,我们创建了一个列表并使用sort()方法按升序排序-#CreatingaListmyList=["Jacob","Harry","Mark","Anthony"]#DisplayingtheListprint("List=",myList)#SorttheListsinAscendingOrdermyList.sort(

Java基础中List常用方法是什么Java基础中List常用方法是什么May 14, 2023 am 10:16 AM

一、List接口简介List是一个有序的集合、可重复的集合。它是继承Collection接口,在List集合中是可以出现重复的元素,可以通过索引(下标)来访问指定位置的元素。二、List常用方法——voidadd(intindex,Obejctelement)方法1.voidadd(intindex,Obejctelement)方法是把element元素插入在指定位置,后面的元素往后移一个元素。2.voidadd(intindex,Obejctelemen

Java中如何将数组转换为ListJava中如何将数组转换为ListApr 19, 2023 am 09:13 AM

一.最常见方式(未必最佳)通过Arrays.asList(strArray)方式,将数组转换List后,不能对List增删,只能查改,否则抛异常。关键代码:Listlist=Arrays.asList(strArray);privatevoidtestArrayCastToListError(){String[]strArray=newString[2];Listlist=Arrays.asList(strArray);//对转换后的list插入一条数据list.add("1"

java中List中set方法和add方法的区别是什么java中List中set方法和add方法的区别是什么Apr 19, 2023 pm 07:49 PM

前言在Java中的常用的集合接口List中有两个非常相似的方法:Eset(intindex,Eelement);voidadd(intindex,Eelement);这两个方法都是在集合的指定位置插入指定的元素,那么这两个方法到底有什么区别呢?接下来我们通过ArrayList这个我们常用集合实现来看一下这两个方法的差异相同点首先我们来看一下这两个方法在ArrayList中的相同点他们都会在集合的指定位置插入新的元素,例如下面的例子:#在集合的第2位插入一个F#通过add方法插入Listlist=

list如何转numpylist如何转numpyNov 22, 2023 am 11:29 AM

list转numpy的方法:1、使用numpy.array()函数,该函数的第一个参数是列表对象,可以是一维或多维的列表;2、使用numpy.asarray()函数,该函数会尽量使用输入列表的数据类型;3、使用numpy.reshape()函数,可以将一维的列表转换为多维的NumPy数组;4、使用numpy.fromiter()函数,该函数的第一个参数是可迭代对象。

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function