How to join the list of elements to string in Python
In this tutorial, we are going to learn about how to join the list of elements into a string in Python.
Joining the list of elements
To join the list of elements into a string, we can use the built-in join()
and map()
methods in Python.
Here is an example:
myList = [1, 2, 3, '4']
string = ', '.join(map(str,myList))
print (string)
Output:
'1, 2, 3, 4'
or you can join it, without comma’s like this.
myList = [1, 2, 3, '4']
string = ''.join(map(str,myList))
print (string)
Output:
'1234'