vote up 7 vote down star

Is there a function in python to split a word into a list of single letters? e.g

s="Word to Split"

to get

wordlist=['W','o','r','d','','t','o' ....]

flag

50% accept rate

5 Answers

vote up 34 vote down check
>>> list("Word to Split")
['W', 'o', 'r', 'd', ' ', 't', 'o', ' ', 'S', 'p', 'l', 'i', 't']
link|flag
vote up 0 vote down

Abuse of the rules, same result: (x for x in 'Word to split')

Actually an iterator, not a list. But it's likely you won't really care.

link|flag
vote up 0 vote down

The list function will do this

>>> list('foo')
['f', 'o', 'o']
link|flag
vote up 0 vote down

Try:

s = "Word to Split"
wordlist = list(s)
wordlist

That should give you what you need (['W','o','r','d',' ','t','o',' ','S','p','l','i','t']).

link|flag
vote up 1 vote down

Why do you need it? Most of the time you can use a string like a list.

link|flag
You can't sort, randomize, etc a string. Don't know his specific case, but these aren't uncommon operations. – Cody Brocious Sep 22 '08 at 7:44
In fact, you can't modify a string in any way. That's why they are called "Immutable". – Matthew Schinckel Sep 22 '08 at 9:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.