Answers for "how to split text at every letter in 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
1

python split every character in string

def split(word): 
    return [char for char in word]
Posted by: Guest on September-21-2020

Code answers related to "how to split text at every letter in python"

Python Answers by Framework

Browse Popular Code Answers by Language