python | February 04, 2020
list1 = [1, 2, 3, 4] del list1[2] # list1 = [1, 2, 4]
list1 = [1, 2, 3, 4] list1.remove(3) # list1 = [1, 2, 4]
🍓Github