在Python中,可以使用remove()
方法從列表中刪除指定的對象。例如:
my_list = [1, 2, 3, 4, 5]
# 刪除對象3
my_list.remove(3)
print(my_list) # [1, 2, 4, 5]
另外,還可以使用del
語句來刪除列表中指定位置的對象。例如:
my_list = [1, 2, 3, 4, 5]
# 刪除索引為2的對象
del my_list[2]
print(my_list) # [1, 2, 4, 5]
需要注意的是,如果要刪除的對象在列表中不存在,會觸發ValueError
異常。