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

Last updated 3 years, 2 months ago | 1277 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