SyntaxFix
Write A Post
Hire A Developer
Questions
If you want all the chars of a word/sentence in a list, do this:
print(list("word")) # ['w', 'o', 'r', 'd'] print(list("some sentence")) # ['s', 'o', 'm', 'e', ' ', 's', 'e', 'n', 't', 'e', 'n', 'c', 'e']