python中pop函數的作用是移除列表中的一個元素,并且返回該元素的值。
pop()函數語法:
list.pop(obj=list[-1])
參數:
obj:可選參數,要移除列表元素的對象。
pop()函數使用方法:
sentence=['All', 'good', 'things', 'come', 'to' ,'those', 'who', 'wait.']
print("默認為 index=-1,刪除最后一個列表值:",sentence.pop(-1),"\n")
print("默認刪除最后一個列表值: ",sentence.pop(),"\n")
print("刪除第一個元素:",sentence.pop(0),"\n")
print("刪除第三個元素:",sentence.pop(2),"\n")
print("輸出剩余元素:",sentence)