1.remove

remove()方法是直接对可变序中的元素进行检索删除,返回的是删除后的列表(不返回删除值,返回None)

python del pop python del pop区别_python del pop

 

 2.pop

pop()方法是对可变序列表中元素下标进行检索删除,返回删除值

python del pop python del pop区别_python del pop_02

 

3.del

del()方法是对可变序列表中元素下标来进行删除,不返回删除值

 

python del pop python del pop区别_python del pop_03