列表中的多维
>>> list1 = ], 3, 5, 8, 13, 18]>>> list1.remove()
Traceback (most recent call last):
File "<pyshell#51>", line 1, in <module>
list1.remove()
IndexError: list index out of range
小甲鱼给的答案中为啥就在范围呢
小甲鱼给的答案中为啥就在范围呢
小甲鱼给的答案中为啥就在范围呢
>>> list1 = ], 3, 5, 8, 13, 18]
>>> list1 = '小鱿鱼' list1 = ], 3, 5, 8, 13, 18]
print(list1)
list1.remove(list1)
print(list1)
小甲鱼
], 3, 5, 8, 13, 18]
语法
remove()方法语法:
list.remove(obj)
参数
obj -- 列表中要移除的对象。
返回值
该方法没有返回值但是会移除列表中的某个值的第一个匹配项。
页:
[1]