Answers for "how to join a list of characters in python"

3

how to join a list of characters in python

>>> a = ['a', 'b', 'c', 'd']
>>> ''.join(a)
'abcd'
Posted by: Guest on September-10-2020

Code answers related to "how to join a list of characters in python"

Python Answers by Framework

Browse Popular Code Answers by Language