Source Code:
(back to article)
my_list = ["Hello", "World"] string = " ".join(my_list) print(string)
Result:
Report an issue