So löschen Sie ein Tupel von Array Python

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