Answers for "python split letter"

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
1

python separate strings into characters

>>> s = "foobar"
>>> list(s)
['f', 'o', 'o', 'b', 'a', 'r']
Posted by: Guest on October-13-2021

Code answers related to "python split letter"

Python Answers by Framework

Browse Popular Code Answers by Language