How can I split a string in Python using multiple delimiters?

I’m trying to split a string using multiple delimiters in Python. For example, I want to split the following string:

my_string = "apple,banana;cherry/orange"

into a list containing the individual words. I want to split the string using the delimiters ",", ";", and `/". What’s the best way to do this?

Here’s what I’ve tried so far:

However, this only splits the string using commas, and doesn’t account for the other delimiters. How can I modify this code to split the string using all of the specified delimiters?

Any help would be greatly appreciated!