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

Last updated 3 years, 1 month ago | 1247 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