当前位置:脚本大全 > > 正文

python中list怎么用(详解python中list的使用)

时间:2022-01-14 02:34:16类别:脚本大全

python中list怎么用

详解python中list的使用

1、list(列表)是一种有序的集合,可以随时添加、修改、删除其中的元素。

举例:listclassname = ['jack','tom','mark']

列表可以根据索引获取元素,如:listclassname[0] :

python中list怎么用(详解python中list的使用)

列表索引是从0开始的,最后一个元素索引是len(listclassname)-1

如果要取最后一个元素,除了计算索引位置外,还可以用-1做索引,直接获取最后一个元素:

python中list怎么用(详解python中list的使用)

1.1 获取列表个数(长度):用len()函数,可以获取列表元素的个数(元素从1开始计算的):len(listclassname)

python中list怎么用(详解python中list的使用)

1.2 添加元素:用append()函数,可以再列表末尾添加元素:listclassname.append('小明')

python中list怎么用(详解python中list的使用)

1.3 插入元素:用insert()函数,可以把元素插入到指定的位置:

python中list怎么用(详解python中list的使用)

1.4 替换元素:把某个元素替换成别的元素,可以直接赋值给对应的索引位置:

python中list怎么用(详解python中list的使用)

1.5 list里面的元素的数据类型也可以不同:

python中list怎么用(详解python中list的使用)

1.6 list元素也可以是另一个list:

python中list怎么用(详解python中list的使用)

以上所述是小编给大家介绍的python中list的使用详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对开心学习网网站的支持!

原文链接:https://www.cnblogs.com/wang1yi1xian1/p/9681541.html

标签:
上一篇下一篇

猜您喜欢

热门推荐