Answers for "how to split all the characters in a word python"

3

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"]
Posted by: Guest on February-27-2021

Code answers related to "how to split all the characters in a word python"

Python Answers by Framework

Browse Popular Code Answers by Language