I have this list of strings with another list of strings inside of it and i want to convert it into a single string, how do i do it? (Python) Example:
list =["okok", ["kappa", "ok"], "okok"]
I tried to use join but it doesn't work (like this: listToString = "".join (list)