What you are looking for is called split, and it calls the object str. For instance:
>>> brotherstring = "brother's"
>>> brotherstring.split("'")
['brother', 's']
>>> redbluestring = "red/blue"
>>> redbluestring.split("/")
['red', 'blue']
split , rsplit, partition .., . , , .