Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Splitting a string into a list in python

I'd like to take user input and break it apart character by character. Basically I have this


string = raw_input("String: ")
print string
Now I want to split each of these letters and put them into a list. So lets say I input hello, I get a list like ['h', 'e', 'l', 'l', 'o']

share|improve this question

marked as duplicate by Jacob, luvieere, richq, Richard, Sean Owen Oct 1 '11 at 10:38

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 3 down vote accepted

Just convert this string to a list. It is already an iterable sequence of individual characters so the conversion is automatic.

string = raw_input("String: ")
print(list(string))
share|improve this answer

You usually don't need to, since strings are iterable regardless. But:

print list('hello')
share|improve this answer
s = [c for c in string]
print s
share|improve this answer

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