蓝绝

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 20 21 22 23 24

2022年8月28日 #

摘要: #append() list=[10,20,30,40,50,60,70,80] #列表后面添加元素,可以施单个元素或列表整体 list.append(20) #后面添加单个元素 print(list) list.append([30,90]) #后面添加整个列表 print(list) E:\Py 阅读全文
posted @ 2022-08-28 12:11 蓝绝 阅读(113) 评论(0) 推荐(0) 编辑

2022年8月19日 #

摘要: list=[10,20,30,40,50,60,70,80] print(list[6:0:-2]) print(list[6:0:-1]) print(list[6:0:-1]) print(list[1:6:1]) E:\PycharmProjects\pythonProject\venv\Sc 阅读全文
posted @ 2022-08-19 16:47 蓝绝 阅读(57) 评论(0) 推荐(0) 编辑

上一页 1 ··· 20 21 22 23 24