Python join all items of a list to convert into a single string

Last updated 2 years, 9 months ago | 974 views 75     5

Tags:- Python Django

Python | Join all items of a list to convert into a single string

>>> x = ["Python", "Online", "Training"]
>>> print(" ".join(x))
Python Online Training