python character list to string code example
Example 1: how to join a list of characters in python
>>> a = ['a', 'b', 'c', 'd']
>>> ''.join(a)
'abcd'
Example 2: python character list to string
string_holder = ""
string_list = ( "h", "e", "l", "l" ,"o" )
string_holder.join(string_list)
print(string_holder)
#output
# hello