摘要:
#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
蓝绝
阅读(196)
评论(0)
推荐(0)
2022年8月28日 #
2022年8月19日 #