fork download
  1. a=[]
  2. for i in range (0,10):
  3. a.append(i)
  4. print(a[i])
Success #stdin #stdout 0.07s 14056KB
stdin
Standard input is empty
stdout
0
1
2
3
4
5
6
7
8
9