How can I convert a list into a space-separated string in Python?
For example, I want to convert this list:
my_list = [how,are,you]
Why don't you add a space in the items of the list itself, like : list = ["how ", "are ", "you "]
list = ["how ", "are ", "you "]