search
HomeBackend DevelopmentPython TutorialThings to take stock of the list of Python basics

1. List format

Example:

   namesList = ['xiaoWang','xiaoZhg','xiaa']

is more powerful than the C language array The point is that the elements in the list can be of different types.

   testList = [1, 'a']

2. List related operations ("add", "delete", "modify", "check" )

Add elements

append() You can add elements to the list through append.

Example:

# 定义变量A,默认有3个元素
A = ['rr', 'rag', 'rte']


print("-----添加之前,列表A的数据-----")
for tempName in A:
    print(tempName)


# 提示、并添加元素
temp = input('请输入要添加的学生姓名:')
A.append(temp)


print("-----添加之后,列表A的数据-----")
for tempName in A:
    print(tempName)

Run result:

Things to take stock of the list of Python basics

Modify elements ("change")

When modifying elements, you must use the subscript to determine what you want to modify. which element it is before it can be modified.

Example:

# 定义变量A,默认有3个元素
A = ['rr', 'rag', 'rte']
print("-----修改之前,列表A的数据-----")
for tempName in A:
    print(tempName)


# 修改元素
A[1] = 'Lu'


print("-----修改之后,列表A的数据-----")
for tempName in A:
    print(tempName)

Result:

Things to take stock of the list of Python basics

查找元素("查"in, not in, index, count)

python中查找的常用方法为:

  1. in(存在),如果存在那么结果为true,否则为false。

  2. not in(不存在),如果不存在那么结果为true,否则false。

<br/>
 #待查找的列表    A = [&#39;rr&#39;, &#39;rag&#39;, &#39;rte&#39;]
    #获取用户要查找的名字    findName = input(&#39;请输入要查找的内容:&#39;)
    #查找是否存在    if findName in A:        print(&#39;在字典中找到了相同的内容&#39;)    else:        print(&#39;没有找到&#39;)

运行结果:(找到)

Things to take stock of the list of Python basics

运行结果:(没有找到)

Things to take stock of the list of Python basics

注:

    in的方法只要会用了,那么not in也是同样的用法,只不过not in判断的是不存在。

删除元素("删"del, pop, remove)

  1. del (根据下标进行删除)

<br/>
 Name = [&#39;加勒比海盗&#39;,&#39;骇客帝国&#39;,&#39;第一滴血&#39;,&#39;霍比特人&#39;,&#39;速度与激情&#39;]
print(&#39;------删除之前------&#39;)for tempName in Name:    print(tempName)
del Name[2]
print(&#39;------删除之后------&#39;)for tempName in Name:    print(tempName)

结果:

Things to take stock of the list of Python basics

  1. pop(删除最后一个元素)

Subject= [&#39;数学&#39;, &#39;语文&#39;, &#39;英语&#39;, &#39;地理&#39;, &#39;历史&#39;]
print(&#39;------删除之前------&#39;)for tempSubject in Subject:    print(tempSubject)
del Subject[2]  #删除第二个元素
print(&#39;------删除之后------&#39;)for tempSubject in Subject:    print(tempSubject)

运行结果:

Things to take stock of the list of Python basics

  1. remove (根据元素的值进行删除)

<br/>
Subject= [&#39;数学&#39;, &#39;语文&#39;, &#39;英语&#39;, &#39;地理&#39;, &#39;历史&#39;]
print(&#39;------删除之前------&#39;)for tempSubject in Subject:    print(tempSubject)
# del Subject[2]  #删除第二个元素Subject.remove(&#39;英语&#39;)

print(&#39;------删除之后------&#39;)for tempSubject in Subject:    print(tempSubject)

结果:

Things to take stock of the list of Python basics

排序(sort, reverse)

sort方法是将list按特定顺序重新排列,默认为由小到大,参数reverse=True可改为倒序,由大到小。

reverse方法是将list逆置。

a = [1, 4, 2, 3]print(a)
a.reverse()print(a) # 运行结果a.sort()print(a)  # 运行结果a.sort(reverse=True)print(a)  # 运行结果

运行结果:

Things to take stock of the list of Python basics


三、列表的嵌套

1. 列表嵌套

类似while循环的嵌套,列表也是支持嵌套的。

一个列表中的元素又是一个列表,那么这就是列表的嵌套。

例:

Letter= [[&#39;A&#39;, &#39;B&#39;],         [&#39;C&#39;, &#39;D&#39;, &#39;E&#39;],         [&#39;F&#39;, &#39;R&#39;]]

2. 字典列表

列表中包含字典。比如花名册:

pep1 = {&#39;name&#39;: &#39;蔡同学&#39;, &#39;school&#39;: &#39;北京大学&#39;}pep2 = {&#39;name&#39;: &#39;陈作同&#39;, &#39;school&#39;: &#39;中山大学&#39;}pep_list = [pep1, pep2]for pepo in pep_list:    print(pepo)

运行结果:

Things to take stock of the list of Python basics

有的应用场景,会在列表中包含大量的字典, 而且其中的每个字典都会包含拥有众多属性的大对象。

3. 列表字典

字典包含列表。比如图书的标签,一本书会被标注多个标签:

book = {&#39;title&#39;: &#39;现代艺术150年&#39;,        &#39;tags&#39;: [&#39;数学&#39;, &#39;历史学&#39;]}for tags in book[&#39;tags&#39;]:    print(tags)

运行结果:

Things to take stock of the list of Python basics


四、总结

    本文详细的讲解了Python基础 。介绍了常见的列表操作,以及在实际操作中会遇到的问题,提供了解决方案。最后通过一个小项目,使读者能够更好的理解Python列表的使用方法。希望可以帮助你更好的学习。

The above is the detailed content of Things to take stock of the list of Python basics. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:Go语言进阶学习. If there is any infringement, please contact admin@php.cn delete
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)