活TM憨批一个 发表于 2020-10-5 22:33:07

列表中的多维

>>> 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 = '小鱿鱼'

疾风怪盗 发表于 2020-10-5 22:33:08

list1 = ], 3, 5, 8, 13, 18]
print(list1)

list1.remove(list1)
print(list1)
小甲鱼
], 3, 5, 8, 13, 18]

语法
remove()方法语法:

list.remove(obj)
参数
obj -- 列表中要移除的对象。
返回值
该方法没有返回值但是会移除列表中的某个值的第一个匹配项。
页: [1]
查看完整版本: 列表中的多维