开始学习第一章-列表
书里的示例有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.
- remove()指定删除列表中某一指定的数据,但仅可删除一个数据,不可删除多个数据
array.remove(x)
Remove the first occurrence of x from the array.
那么问题来了,如果想要删除多个数据怎么搞?
通过构建自定义函数遍历列表中的数据,选择并使用del进行删除