fork download
  1. num = range(1, 5)
  2.  
  3. print(list(num))
  4.  
  5.  
Success #stdin #stdout 0.04s 9620KB
stdin
8
stdout
[1, 2, 3, 4]