- 作者:韩信子@ShowMeAI
- 教程地址:www.showmeai.tech/tutorials/5…
- 本文地址:www.showmeai.tech/article-det…
- 声明:版权所有,转载请联络平台与作者并注明出处
1.Python列表(List)
序列是Python中最基本和常见的数据结构。序列中的每个元素都分配一个数字 – 【它的方位,或索引】,第一个索引是0,第二个索引是1,依此类推。
序列都能够进行的操作包含索引,切片,加,乘,检查成员。
此外,Python已经内置确定序列的长度以及确定最大和最小的元素的办法。
列表是最常用的Python数据类型,它能够作为一个方括号内的逗号分隔值呈现。
列表的数据项不需要具有相同的类型。
创立一个列表,只要把逗号分隔的不同的数据项运用方括号括起来即可。如下所示:
list1 = ['python', 'ShowMeAI', 1997, 2022]
list2 = [1, 2, 3, 4, 5 ]
list3 = ["a", "b", "c", "d"]
与字符串的索引相同,列表索引从0开始。列表能够进行截取、组合等。
2.拜访列表中的值
运用下标索引来拜访列表中的值,相同你也能够运用方括号的方式截取子列表。
如下为示例代码(代码能够在在线python3环境中运转):
list1 = ['python', 'ShowMeAI', 1997, 2022]
list2 = [1, 2, 3, 4, 5, 6, 7 ]
print("list1[0]: ", list1[0])
print("list2[1:5]: ", list2[1:5])
以上代码履行成果:
list1[0]: python
list2[1:5]: [2, 3, 4, 5]
如下为示例代码(代码能够在在线python3环境中运转):
list = ['red', 'green', 'blue', 'yellow', 'white', 'black']
print( list[-1] )
print( list[:-2] )
print( list[-3:] )
运转成果
black
['red', 'green', 'blue', 'yellow']
['yellow', 'white', 'black']
3.更新列表
你能够对列表的数据项进行修正或更新,你也能够运用append()办法来增加列表项,如下所示(代码能够在在线python3环境中运转):
list = [] ## 空列表
list.append('Google') ## 运用 append() 增加元素
list.append('ShowMeAI')
print(list)
以上代码履行成果:
['Google', 'ShowMeAI']
4.删去列表元素
能够运用 del 句子来删去列表的元素,如下所示(代码能够在在线python3环境中运转):
list1 = ['python', 'ShowMeAI', 1997, 2022]
print(list1)
del list1[2]
print("删去索引为2的元素后 : ")
print(list1)
以上代码履行成果:
['python', 'ShowMeAI', 1997, 2022]
删去索引为2的元素后 :
['python', 'ShowMeAI', 2022]
**注意:**我们后续会评论remove()办法的运用
5.Python列表脚本操作符
列表对 + 和 * 的操作符与字符串类似。+ 号用于组合列表,* 号用于重复列表。
如下所示:
Python 表达式 | 成果 | 描绘 |
---|---|---|
len([1, 2, 3]) | 3 | 长度 |
[1, 2, 3] + [4, 5, 6] | [1, 2, 3, 4, 5, 6] | 组合 |
[‘Hi!’] * 4 | [‘Hi!’, ‘Hi!’, ‘Hi!’, ‘Hi!’] | 重复 |
3 in [1, 2, 3] | True | 元素是否存在于列表中 |
for x in [1, 2, 3]: print x, | 1 2 3 | 迭代 |
6.Python列表截取
Python 的列表截取实例如下:
>>>L = ['Google', 'ShowMeAI', 'Baidu']
>>> L[2]
'Baidu'
>>> L[-2]
'ShowMeAI'
>>> L[1:]
['ShowMeAI', 'Baidu']
>>>
描绘:
Python 表达式 | 成果 | 描绘 |
---|---|---|
L[2] | ‘Baidu’ | 读取列表中第三个元素 |
L[-2] | ‘ShowMeAI’ | 读取列表中倒数第二个元素 |
L[1:] | [‘ShowMeAI’, ‘Baidu’] | 从第二个元素开始截取列表 |
7.Python列表函数&办法
Python包含以下函数:
序号 | 函数 | 效果 |
---|---|---|
1 | len(list) | 列表元素个数 |
2 | max(list) | 回来列表元素最大值 |
3 | min(list) | 回来列表元素最小值 |
4 | list(seq) | 将元组转换为列表 |
# 示例1:长度
list1, list2 = [123, 'ShowMeAI', 'google'], [456, 'abc']
print("第1个列表长度 : ", len(list1))
print("第2个列表长度 : ", len(list2))
成果
第1个列表长度 : 3
第2个列表长度 : 2
# 示例2:最大最小值
list1, list2 = ['Baidu', 'ShowMeAI', 'google'], [456, 789, 200]
print("第1个列表最大值 : ", max(list1))
print("第1个列表最小值 : ", min(list1))
print("第2个列表最大值 : ", max(list2))
print("第2个列表最小值 : ", min(list2))
成果
第1个列表最大值 : google
第1个列表最小值 : Baidu
第2个列表最大值 : 789
第2个列表最小值 : 200
# 示例3:转列表
aTuple = (123, 'ShowMeAI', 'google', 'Baidu');
aList = list(aTuple)
print("列表元素 : ")
print(aList)
成果
列表元素 :
[123, 'ShowMeAI', 'google', 'Baidu']
Python包含以下办法:
序号 | 办法 | 效果 |
---|---|---|
1 | list.append(obj) | 在列表结尾增加新的目标 |
2 | list.count(obj) | 计算某个元素在列表中呈现的次数 |
3 | list.extend(seq) | 在列表结尾一次性追加另一个序列中的多个值(用新列表扩展本来的列表) |
4 | list.index(obj) | 从列表中找出某个值第一个匹配项的索引方位 |
5 | list.insert(index, obj) | 将目标插入列表 |
6 | list.pop([index=-1]) | 移除列表中的一个元素(默许最终一个元素),而且回来该元素的值 |
7 | list.remove(obj) | 移除列表中某个值的第一个匹配项 |
8 | list.reverse() | 反向列表中元素 |
9 | list.sort(cmp=None, key=None, reverse=False) | 对原列表进行排序 |
aList = ['Baidu', 'ShowMeAI', 'google']
print("aList : ", aList)
aList.append( 'ByteDance' )
aList += ['ShowMeAI']
print("通过append和+计算后的aList : ", aList)
print("计算ShowMeAI个数 : ", aList.count('ShowMeAI'))
aList.extend(['Taobao', 'Tencent'])
print("通过extend后的aList : ", aList)
print("运用index查找Taobao的索引方位: ", aList.index('Taobao'))
aList.insert( 3, 'DiDi')
print("在index为3的方位insert元素后的aList : ", aList)
print("aList pop出的元素: ", aList.pop())
aList.remove('ShowMeAI')
print("aList用remove删去第1个匹配到的ShowMeAI后: ", aList)
aList.reverse()
print("aList运用reverse逆序后的成果: ", aList)
aList.sort()
print("aList运用sort排序后的成果: ", aList)
成果
aList : ['Baidu', 'ShowMeAI', 'google']
通过append和+计算后的aList : ['Baidu', 'ShowMeAI', 'google', 'ByteDance', 'ShowMeAI']
计算ShowMeAI个数 : 2
通过extend后的aList : ['Baidu', 'ShowMeAI', 'google', 'ByteDance', 'ShowMeAI', 'Taobao', 'Tencent']
运用index查找Taobao的索引方位: 5
在index为3的方位insert元素后的aList : ['Baidu', 'ShowMeAI', 'google', 'DiDi', 'ByteDance', 'ShowMeAI', 'Taobao', 'Tencent']
aList pop出的元素: Tencent
aList用remove删去第1个匹配到的ShowMeAI后: ['Baidu', 'google', 'DiDi', 'ByteDance', 'ShowMeAI', 'Taobao']
aList运用reverse逆序后的成果: ['Taobao', 'ShowMeAI', 'ByteDance', 'DiDi', 'google', 'Baidu']
aList运用sort排序后的成果: ['Baidu', 'ByteDance', 'DiDi', 'ShowMeAI', 'Taobao', 'google']
8.视频教程
请点击到B站查看【双语字幕】版本
- www.bilibili.com/video/BV1yg…
资料与代码下载
本教程系列的代码能够在ShowMeAI对应的github中下载,可本地python环境运转,能科学上网的宝宝也能够直接借助google colab一键运转与交互操作学习哦!
本教程系列涉及的Python速查表能够在以下地址下载获取:
- Python速查表
拓宽参考资料
- Python教程—Python3文档
- Python教程-廖雪峰的官方网站
ShowMeAI相关文章引荐
- python介绍
- python装置与环境装备
- python根底语法
- python根底数据类型
- python运算符
- python条件操控与if句子
- python循环句子
- python while循环
- python for循环
- python break句子
- python continue句子
- python pass句子
- python字符串及操作
- python列表
- python元组
- python字典
- python调集
- python函数
- python迭代器与生成器
- python数据结构
- python模块
- python文件读写
- python文件与目录操作
- python错误与异常处理
- python面向目标编程
- python命名空间与效果域
- python时间和日期
ShowMeAI系列教程引荐
- 图解Python编程:从入门到通晓系列教程
- 图解数据分析:从入门到通晓系列教程
- 图解AI数学根底:从入门到通晓系列教程
- 图解大数据技术:从入门到通晓系列教程