cara menghapus tuple dari array python

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