Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've tried to look around the web for answers to splitting a string into an array of characters but I can't seem to find a simple method

str.split(//) does not seem to work like Ruby does. Is there a simple way of doing this without looping?

share|improve this question

3 Answers

>>> s = "foobar"
>>> list(s)
['f', 'o', 'o', 'b', 'a', 'r']

You need list

share|improve this answer
Hey nice. i didn't know that – armonge Feb 12 '11 at 15:18
In my opinion much better than the ruby method, you can convert between sequence types freely, even better, in C level. – arthurprs Feb 23 '11 at 0:37
Simply beautiful! I have been looking for a solution to this problem for sometime now I should have guessed python provided something as simple as this. – Pulimon Mar 29 at 7:56

You take the string and pass it to list()

s = "mystring"
l = list(s)
print l
share|improve this answer

Use a list comprehension

[ x for x in string]
share|improve this answer
2  
... which is a verbose way to write list. It's like sprinkling map id through a Haskell program ;) – delnan Feb 12 '11 at 15:24
true, i didn't know of the other ways – armonge Feb 14 '11 at 16:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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