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