Python 学习-pop()与remove()的使用

开始学习第一章-列表
书里的示例有pop()与remove()的使用使用,记录一些因使用不当报错的函数:
1. pop()-默认删除列表末尾的数据,但不可指定删除某一个数据,但可按位指定删除
array.pop([i])
Removes the item with the index i from the array and returns it. The optional argument defaults to -1, so that by default the last item is removed and returned.
Python 学习-pop()与remove()的使用_第1张图片

正确使用方法-默认删除末尾数据
Python 学习-pop()与remove()的使用_第2张图片

  1. remove()指定删除列表中某一指定的数据,但仅可删除一个数据,不可删除多个数据
    array.remove(x)
    Remove the first occurrence of x from the array.
    Python 学习-pop()与remove()的使用_第3张图片

正确使用-删除列表中一个数据

那么问题来了,如果想要删除多个数据怎么搞?
通过构建自定义函数遍历列表中的数据,选择并使用del进行删除
Python 学习-pop()与remove()的使用_第4张图片

你可能感兴趣的:(学习Python)