split a word into a string 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: how to split word in python
text= "I am Batman"
splitted_text= text.split()
Print(splitted_text)