Run
mylist = [21, 5, 8, 52, 21, 87] item = 21 # Remove the item mylist.remove(item) print(mylist)
Output