Answers for "how to put chracters of word in list"

1

splitting a string and appending each character to a list python

def split(string_with_spaces):
    string_list = string_list.split()
    list_split_string = []
    for i in string_list:
        list_split_string.append(list(i))
    return list_split_string
Posted by: Guest on December-16-2020
0

python how to turn a word into a list

wordString = "foobar"
list(wordString)
>>> ['f', 'o', 'o', 'b', 'a', 'r']
Posted by: Guest on June-08-2020

Code answers related to "how to put chracters of word in list"

Python Answers by Framework

Browse Popular Code Answers by Language