array of characters to string python code example
Example 1: turn a string into a list of characters python
#Use the function list()
word = list(word)
Example 2: how to save string characters into char array or list in python
fd = open(filename, 'rU')
chars = []
for line in fd:
chars.extend(line)