摘要: 1 # 在列表的末尾添加一个元素 2 lst = [10, 20, 30] 3 print('初始列表', lst, id(lst)) 4 lst.append(100) 5 print('添加100之后', lst, id(lst)) 6 7 # 在列表的末尾添加至少一个元素 8 lst2 = [ 阅读全文
posted @ 2022-02-06 20:47 Xxiaoyu 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 1 # 判定指定元素在列表中是否存在 2 print('p' in 'python') 3 print('p' not in 'python') 4 5 lst = [10, 20, 'python', 'hello'] 6 print(10 in lst) 7 print(10 not in ls 阅读全文
posted @ 2022-02-06 20:30 Xxiaoyu 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 一、获取列表中指定元素的索引 index(value),index(value, start, stop) 如果列表中存在N个相同元素,只返回相同元素中的第一个元素的索引 如果查询的元素在列表中不存在,则会抛出ValueError 还可以在指定的start和stop之间进行查找 1 lst = [' 阅读全文
posted @ 2022-02-06 20:29 Xxiaoyu 阅读(849) 评论(0) 推荐(0) 编辑
摘要: 列表的特点 列表元素按有序排序 索引映射为一个数据 列表可以存储重复数据 任意数据类型混存 根据需要动态分配和回收内存 1 a = 10 2 lst = ['hello', 'world', 98] 3 print(id(lst)) 4 print(type(lst)) 5 print(lst) 列 阅读全文
posted @ 2022-02-06 20:23 Xxiaoyu 阅读(68) 评论(0) 推荐(0) 编辑