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:
How to split a string into array of characters with Python?

I want to split a word into a list of characters using a Python one-liner.

ie: How do I split:

v = 'aeiou'

into:

v = ['a','e','i','o','u']

using a Python one-line built-in?

This should be simple, but I am thrown off because I do not have a character that I am using as a key for split.

I have not found a duplicate of this question.

share|improve this question
1  
You should see strings as a list. Because in Python string are simply list of characters. – Zulu Nov 23 '12 at 23:14
1  
-1 This is really easy to find by doing a simple web search. – Thijs van Dien Nov 23 '12 at 23:17
@tvdien I searched for 10+ minutes for an answer before I posted here. Maybe I was not wording my search correctly to get hits. – dinkelk Nov 23 '12 at 23:18
Type "python" followed by the exact title of your question into Google and there's your answer (actually on SO). – Thijs van Dien Nov 23 '12 at 23:22
@tvdien I will help it close ;) thanks. – dinkelk Nov 23 '12 at 23:27

marked as duplicate by dinkelk, Lie Ryan, Atanas Korchev, FallenAngel, Paul R Nov 24 '12 at 11:41

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.

2 Answers

up vote 3 down vote accepted

You can just do list(v). Strings are sequences of their characters.

share|improve this answer

Here are two possible ways of many others. You can use list(v), or list comprehension, to get a list of characters.

>>> v = 'aeiou'
>>> [ch for ch in v]
['a', 'e', 'i', 'o', 'u']
>>> list(v)
['a', 'e', 'i', 'o', 'u']
share|improve this answer

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