欢迎大家来到IT世界,在知识的湖畔探索吧!
Python列表性质
- 列表是 Python 中最基本的数据结构;
- 列表中的每个值都有对应的位置值,称之为索引,第一个索引是 0,第二个索引是 1,依此类推;
- 列表都可以进行的操作包括索引,切片,加,乘,查询;
- 列表的数据项不需要具有相同的类型。
访问列表中的值
与字符串的索引一样,列表索引是从 0 开始,第二个索引是 1,依此类推。
通过索引列表可以进行截取、组合等操作。
list = ['one', 'two', 'three', 'four', 'five']
print( list[0] ) # one
print( list[2] ) # three
print( list[3] ) # four
欢迎大家来到IT世界,在知识的湖畔探索吧!
索引也可以从尾部开始,最后一个元素的索引为 -1,往前一位为 -2,以此类推。
欢迎大家来到IT世界,在知识的湖畔探索吧!list = ['one', 'two', 'three', 'four', 'five']
print( list[-1] ) # five
print( list[-2] ) # four
print( list[-4] ) # two
使用下标索引来访问列表中的值,同样你也可以使用方括号 [] 的形式截取字符,如下所示:
nums = ['one', 'two', 'three', 'four', 'five']
print(nums[0:3]) # ['one', 'two', 'three']
使用负数索引值截取:
欢迎大家来到IT世界,在知识的湖畔探索吧!nums = ['one', 'two', 'three', 'four', 'five']
print(nums[0:-2]) # ['one', 'two', 'three']
更新列表
可以对列表的数据项进行修改或更新,也可以使用 append() 方法来添加列表项,如下所示:
nums = ['one', 'two', 'three', 'four', 'five']
print(nums) # ['one', 'two', 'three', 'four', 'five']
nums.append('six')
print(nums) # ['one', 'two', 'three', 'four', 'five', 'six']
nums[1] = 2
print(nums) # ['one', 2, 'three', 'four', 'five', 'six']
删除列表元素
可以使用 del 语句来删除列表中的元素,如下实例:
nums = ['one', 'two', 'three', 'four', 'five']
print(nums) # ['one', 'two', 'three', 'four', 'five']
del nums[2]
print(nums) # ['one', 'two', 'four', 'five']
Python列表脚本操作符
列表对 + 和 * 的操作符与字符串相似。+ 号用于组合列表,* 号用于重复列表。
a = ['one', 'two', 'three']
b = ['four', 'five', 'six']
c = a + b
print(c) # ['one', 'two', 'three', 'four', 'five', 'six']
print(a * 2) # ['one', 'two', 'three', 'one', 'two', 'three']
Python列表函数和方法
list_num = [4, 7, 2, 0, 9]
print(len(list_num))
print(max(list_num))
print(min(list_num))
运行结果
5
9
0
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( key=None, reverse=False) |
对原列表进行排序 |
10 |
list.clear() |
清空列表 |
11 |
list.copy() |
复制列表 |
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://itzsg.com/22177.html