编程语言
首页 > 编程语言> > Python列表

Python列表

作者:互联网

Python列表

1.使用格式

[数据1, 数据2, 数据3, 数据4, ......]

2.列表的常用操作

2.1查找

2.1.1下标

name_list = ['tom', 'lily', 'rose']

print(name_list[0]) # tom
print(name_list[1]) # lily

2.1.2函数

2.1.3判断数据是否存在

2.2增加

2.3删除

2.4修改

2.5赋值

3.列表的循环遍历

3.1while

3.2for

4.列表嵌套

陌尘吖 发布了93 篇原创文章 · 获赞 45 · 访问量 3万+ 私信 关注

标签:name,Python,rose,list,列表,tom,lily
来源: https://blog.csdn.net/qq_25884515/article/details/104166850