how to split every character in the word using python code example
Example 1: how to split a word into letters in python
def split(word):
return [char for char in word]
word = "word"
print(split(word))
#output: ["w", "o", "r", "d"]
Example 2: python split every character in string
def split(word):
return [char for char in word]