Claudio Grondi wrote:
> what about:
> 
>>>>lst = [digit for digit in '06897']
>>>>lst
> 
> ['0', '6', '8', '9', '7']

Or..

 >>> list('06897')
['0', '6', '8', '9', '7']

Will McGugan
-- 
http://www.willmcgugan.com
"".join({'*':'@','^':'.'}.get(c,0) or chr(97+(ord(c)-84)%26) for c in 
"jvyy*jvyyzpthtna^pbz")
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to