python学习笔记—15—数据容器之列表

  1. 数据容器

列表(list)、元组(tuple)、字符串(str)、集合(set)、字典(dict)

  1. 列表

(1) 定义

python 复制代码
tmp_list = ["super", "carry", "doinb"]
print(f"tmp_list = {tmp_list}, tmp_list type is {type(tmp_list)}")
tmp_list1 = ["doinb", 1, 6.6666]
print(f"tmp_list1 = {tmp_list1}, tmp_list1 type is {type(tmp_list1)}")
tmp_list2 = ["doinb", tmp_list, tmp_list1, ["1", "supercarrydoinb"]]
print(f"tmp_list2 = {tmp_list2}, tmp_list2 type is {type(tmp_list2)}")

(2) 列表下标索引

  1. 正向(从左向右 0 1 2...)
  1. 反向(从右向左 -1 -2 -3...)
  1. 嵌套------列表[子列表][子列表下标]

(3) 方法------定义在类class中的函数称为方法

(4) 列表的常用操作(方法)

  1. index------查询元素在列表中从左到右第一次出现的位置
python 复制代码
tmp_list = ["super", "carry", "doinb", "sdad", "doinb"]
tmp_index = tmp_list.index("doinb")
print(f"doinb 在列表中的元素位置为:{tmp_index}")
  1. 修改特定下标位置的值
python 复制代码
tmp_list = ["super", "carry", "doinb", "sdad", "doinb"]
print(tmp_list)
tmp_list[2] = "nb"
print(tmp_list)
  1. insert------在列表指定下标中插入指定元素
  1. append------在列表尾部追加元素,既能追加元素也能追加其他数据容器(嵌套追加)
  1. extend------取出其他数据容器中的值,追加到本容器中

注意:extend与append区别是后者不涉及嵌套,前者是嵌套追加

  1. del------根据列表下标删除列表元素
  1. pop------将列表中的元素取出并返回取出的元素
  1. remove------删除在列表中从左到右寻找到的第一个 元素
  1. clear------清空整个列表
  1. count------统计某元素在列表中的个数
  1. len------统计列表中的元素个数

(5) 列表的特点

(6) 练习

python 复制代码
tmp_list = [21, 25, 21, 23, 22, 20]
print(tmp_list)
tmp_list.append(31)
print(tmp_list)
tmp_list.extend([29, 33, 30])
print(tmp_list)
tmp = tmp_list.pop(0)
print(tmp_list)
tmp = tmp_list.pop(-1)
print(tmp_list)
tmp = tmp_list.index(31)
print(tmp)

(7) while循环遍历打印列表

python 复制代码
tmp_list = [21, 25, 21, 23, 22, 20]
cnt = 0
while cnt < len(tmp_list):
    print(f"{tmp_list[cnt]} ", end='')
    cnt += 1

(8) for循环遍历列表

python 复制代码
tmp_list = [21, 25, 21, 23, 22, 20]
for i in tmp_list:
    print(f"{i} ", end='')
相关推荐
Summer_Anny3 分钟前
MoEs and Transformers 笔记
笔记
SsummerC21 分钟前
【leetcode100】二叉树的直径
数据结构·python·算法·leetcode
Jackilina_Stone1 小时前
【HUAWEI】HCIP-AI-MindSpore Developer V1.0 | 第五章 自然语言处理原理与应用(3 And 4) | 学习笔记
人工智能·笔记·学习·计算机视觉·华为·自然语言处理·huawei
RacheV+TNY2642781 小时前
未来趋势:电商平台API接口的智能化与自动化发展
网络·人工智能·python·自动化·api
写点什么呢1 小时前
Pytorch学习12_最大池化的使用
人工智能·pytorch·python·深度学习·学习·pycharm
澄澈i1 小时前
设计模式学习[15]---适配器模式
c++·学习·设计模式·适配器模式
郝开1 小时前
Python中的可变对象与不可变对象;Python中的六大标准数据类型哪些属于可变对象,哪些属于不可变对象
开发语言·python·可变对象·不可变对象
魔都天健1 小时前
STLG_02_03_MS SQL - 主要组件、历史和版本
开发语言·数据库·sql·学习
这里有鱼汤2 小时前
Python高手都在用的10个高级技巧,你会几个?
python
小鹏编程2 小时前
C++和Python中负数取余结果的区别
c++·python