fork download
  1. k = []
  2. int = 4567
  3. j = str(int)
  4. for i in j:
  5. k.append(i)
  6.  
  7. print(k)
Success #stdin #stdout 0.09s 14160KB
stdin
Standard input is empty
stdout
['4', '5', '6', '7']