I have a list that looks like:
test = ['bla bla','affect /affected / affecting']
print(test)
and I would like to create new elements in the list by separating the ones that are one element but separated through the "/" symbol.
E.g. desired output in this case:
test_new = ['bla bla','affect','affected','affecting']
How can I do that?
EDIT: The list can have multiple elements, and not all have the "/" symbol