Python | Convert list of strings to space separated string
Given a list of strings, write a Python program to convert the given list of strings into a space-separated string.
Examples:
Input : ['geeks', 'for', 'geeks'] Output : geeks for geeks Input : ['Python', 'Language'] Output : Python Language
Approach #1 : Python string translate()
The string translate() method returns a string where each character is mapped to its corresponding character in the translation table. The limitation of this method is that it does not work for Python 3 and above versions.
# Python3 program to Convert list of # strings to space separated string def convert(lst): return str(lst).translate(None, '[],'') # Driver code lst = ['geeks', 'for', 'geeks'] print(convert(lst)) |
geeks for geeks
Approach #2 : join() function
The join() method is a string method and returns a string in which the elements of sequence have been joined by str separator. In this approach space is the separator.
# Python3 program to Convert list of # strings to space separated string def convert(lst): return ' '.join(lst) # Driver code lst = ['geeks', 'for', 'geeks'] print(convert(lst)) |
geeks for geeks
Recommended Posts:
- Python | Convert key-value pair comma separated string into dictionary
- Python | Convert List of lists to list of Strings
- Python | Convert list of strings to list of tuples
- Python | Convert list of tuples to list of strings
- Python | Convert case of elements in a list of strings
- Python | Convert mixed data types tuple list to string list
- Python | Convert string List to Nested Character List
- Python | Convert list of numerical string to list of Integers
- Python | Convert list of string into sorted list of integer
- Python | Convert string enclosed list to list
- Python | Convert a string representation of list into list
- Python | Convert list of string to list of list
- Python | Convert List of String List to String List
- Python program to convert a list to string
- Python | Convert String ranges to list
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


