标签:IV 列表 -- list print highlight oob google lis
pop() 函数用于移除列表中的一个元素(默认最后一个元素),并且返回该元素的值。
list1 = [‘Google‘, ‘Runoob‘, ‘Taobao‘] list_pop=list1.pop(0) print ("删除的项为 :", list_pop) print ("列表现在为 : ", list1)
删除的项为 : Runoob 列表现在为 : [‘Google‘, ‘Taobao‘]
标签:IV 列表 -- list print highlight oob google lis
原文地址:https://www.cnblogs.com/lichunl/p/9117717.html