How do I split a string into a list of characters? str.split does not work.
str.split
"foobar" → ['f', 'o', 'o', 'b', 'a', 'r']
← Назад к списку