蓝绝

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

 

#append()

list=[10,20,30,40,50,60,70,80]
#列表后面添加元素,可以施单个元素或列表整体
list.append(20)  #后面添加单个元素
print(list)
list.append([30,90]) #后面添加整个列表
print(list)
E:\PycharmProjects\pythonProject\venv\Scripts\python.exe E:/PycharmProjects/pythonProject/demon1/demo1.py
[10, 20, 30, 40, 50, 60, 70, 80, 20]
[10, 20, 30, 40, 50, 60, 70, 80, 20, [30, 90]]

#extend()

 

lst1=[1,2,3]
lst2=[4,5,6]
lst3=(7,8,9)
lst1.extend(lst2)   #后面接入一个及以上多个元素
print(lst1)
lst1.extend(lst3)   #后面接入一个及以上多个元素
print(lst1)
[1, 2, 3, 4, 5, 6]
[1, 2, 3, 4, 5, 6, 7, 8, 9]
#insert(1,99)

lst4=['hello','word',23,99]
lst4.insert(1,99)   #列表任意位置插入一个元素
print(lst4)
['hello', 99, 'word', 23, 99]

#切片

lst5=['hello','word',88,100]
lst6=['hello2','word2']
lst5[1:]=lst6         #插入替代索引位置后面所有元素
print(lst5)
['hello', 'hello2', 'word2']

 

注意:增加操作是原列表上增加元素,非新列表,不可赋值新变量(lst2=lst1.append(23) 相当与lst10: None = lst1.append(23)   )结果为None 

 
posted on 2022-08-28 12:11  蓝绝  阅读(113)  评论(0编辑  收藏  举报