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.
