How do I convert a list into a string with spaces in Python? June 26, 2023 by Tarik " ".join(my_list) You need to join with a space, not an empty string.