fork download
  1. # your code goes her
  2. n = 12345
  3. print map(int, str(n))
  4. l = map(int, str(n))
  5. print type(l)
Success #stdin #stdout 0.01s 7296KB
stdin
Standard input is empty
stdout
[1, 2, 3, 4, 5]
<type 'list'>