Comment supprimer un tuple du tableau Python

tuples = [("a", "b"),("c", "d")]
tuples.remove(("a", "b"))
panda