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

Last updated 4 years ago | 1641 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