Run
mylist = [21, 5, 8, 52, 21, 87, 52] index = 3 # Delete item in mylist at index mylist.pop(index) print(mylist)
Output