What built-in list method would you use to remove items from a list?
del(my_list)
.pop() method example
.pop()
my_list = [1,2,3] my_list.pop(0) my_list >>>[2,3]
pop(my_list)
.delete() method
.delete()