list 是python的一种内置数据类型即列表。list是一种有序的集合,其中的元素可以随时添加和删除。
常用的列表操作方法
# -*- encoding: utf-8 -*- # 定义一个空列表 TestList = [] print(TestList) # 给列表添加元素 # 将元素插入到列表指定位置 TestList.insert(0,‘张三‘) TestList.insert(1,‘李四‘) TestList.insert(2,‘Tom‘) print(TestList) # 在列表末尾插入元素 TestList.append(‘王五‘) print(TestList) # 通过元素索引获取元素值,元素的索引从0开始,到len(TestList) - 1 结束。 print(TestList[1]) # 可以使用索引-1来获取末尾的元素值,以此类推 -2 -3 -4 print(TestList[-2]) # 使用pop()方法来删除末尾元素。pop(i)指定索引删除元素,i表示索引 TestList.pop() print(TestList) TestList.pop(0) print(TestList)
运行结果与上面代码对应
[] [‘张三‘, ‘李四‘, ‘Tom‘] [‘张三‘, ‘李四‘, ‘Tom‘, ‘王五‘] 李四 Tom [‘张三‘, ‘李四‘, ‘Tom‘] [‘李四‘, ‘Tom‘]
未完
原文地址:https://www.cnblogs.com/lizhip/p/12069315.html
时间: 2024-11-02 06:30:42