Im trying to make so that a single string would be divided to a list, for example
from
words = "apple;banana;mango"
to
["apple", "banana", "mango"]
Im using python 3.6.8, thanks!
Im trying to make so that a single string would be divided to a list, for example
from
words = "apple;banana;mango"
to
["apple", "banana", "mango"]
Im using python 3.6.8, thanks!