蓝绝

博客园 首页 新随笔 联系 订阅 管理

2022年8月28日 #

摘要: 阅读全文
posted @ 2022-08-28 17:28 蓝绝 阅读(9) 评论(0) 推荐(0) 编辑

摘要: lst=[i*4 for i in range(1,11)] print(lst) # i*4 为元素根据i规律的表达式 E:\PycharmProjects\pythonProject\venv\Scripts\python.exe E:/PycharmProjects/pythonProject 阅读全文
posted @ 2022-08-28 17:26 蓝绝 阅读(13) 评论(0) 推荐(0) 编辑

摘要: #sort() #操作为原列表上进行,没有新列表生成 lst=[30,10,20,90,45] print('排序前列表',lst,id(lst)) lst.sort() #默认排序方式为升序 print('排序后列表',lst,id(lst)) #操作为原列表上进行,没有新列表生成 lst.sor 阅读全文
posted @ 2022-08-28 17:16 蓝绝 阅读(49) 评论(0) 推荐(0) 编辑

摘要: lst1=[10,20,30,40,10,60,70,80,90,100,1000] lst1[2]=2 #修改其中一个元素 print(lst1) lst1[3:6]=[1000,2000,3000.4000] #修改其中多个元素 print(lst1) 阅读全文
posted @ 2022-08-28 16:47 蓝绝 阅读(36) 评论(0) 推荐(0) 编辑

摘要: # for in # not in # in 列表的判断 in 和 not in lst=[10,56,98,100] print(10 in lst) #10是在列表里吗 print(10 not in lst) #10不在列表里吗 #列表的遍历 for item in lst: print(it 阅读全文
posted @ 2022-08-28 12:28 蓝绝 阅读(60) 评论(0) 推荐(0) 编辑

摘要: # remove() lst1=[10,20,30,40,10,60,70,80,90,100] lst1.remove(20) #移除对应元素 lst1.remove(10) #移除对应元素,如有相同元素移除第一个 print(lst1) lst1.remove(200) #没有该元素就报错,Va 阅读全文
posted @ 2022-08-28 12:25 蓝绝 阅读(71) 评论(0) 推荐(0) 编辑

摘要: #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) 编辑