how to split strings to every charecter in python code example
Example: python split string in characters
# Python3 program to Split string into characters
def split(word):
return [char for char in word]
# Driver code
word = 'geeks'
print(split(word))