Python strip() multiple characters?

Viewed 235212

I want to remove any brackets from a string. Why doesn't this work properly?

>>> name = "Barack (of Washington)"
>>> name = name.strip("(){}<>")
>>> print name
Barack (of Washington
6 Answers
Related