python split each character in string code example

Example 1: how to split a string by character in python

def split(word): 
    return [char for char in word]  
      
# Driver code 
word = 'geeks'
print(split(word)) 

#Output ['g', 'e', 'e', 'k', 's']

Example 2: splitting a string and appending each character to a list python

def split(string_with_spaces):
    string_list = string_list.split()
    list_split_string = []
    for i in string_list:
        list_split_string.append(list(i))
    return list_split_string

Example 3: python split every character in string

def split(word): 
    return [char for char in word]

Example 4: how to save string characters into char array or list in python

fd = open(filename, 'rU')
chars = []
for line in fd:
    chars.extend(line)