join an array of characters into a string in python code example Example: how to join a list of characters in python >>> a = ['a', 'b', 'c', 'd'] >>> ''.join(a) 'abcd'