delete and pop in list code example
Example 1: python delete from list
l = list[1, 2, 3, 4]
l.pop(0) #remove item by index
l.remove(3)#remove item by value
#also buth of the methods returns the item
Example 2: remove item from list python
l = list[1, 2, 3, 4]
for i in range(len(list)):
l.pop(i) # OR "l.remove(i)"