xxxxxxxxxx
list_of_tuples = [('Alba', 'Texas'), ('Abernathy', 'Texas'), ('Abilene', 'Texas')]
list_of_tuples.remove(('Alba', 'Texas'))
#OR
list_of_tuples.pop(list_of_tuples.index(('Abernathy', 'Texas')))
xxxxxxxxxx
# Deleting tuples
my_tuple = ('p', 'r', 'o', 'g', 'r', 'a', 'm', 'i', 'z')
# can't delete items
# TypeError: 'tuple' object doesn't support item deletion
# del my_tuple[3]
# Can delete an entire tuple
del my_tuple
# NameError: name 'my_tuple' is not defined
print(my_tuple)