split a string into a list of each characters python 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: turn a string into a list of characters python
#Use the function list()
word = list(word)
Example 3: split a string every character
# Python3 - separate each character of non-spaced string
def split(string):
return [letter for letter in string]
# Driver code
string = 'split this string'
print(split(string))