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]
" ".join(my_list)
you need to join with a space not an empty string ...