Jak usunąć krotek z tablicy Pythona

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