Source Code:
(back to article)
list_of_strings = ["Hello", "world"] result_string = " ".join(list_of_strings) print(result_string) # "Hello world"
Result:
Report an issue