fork download
  1. a=[9,10,5,20,30]
  2. i = 0
  3. while i < len(a):
  4. print(a[i])
  5. i = i + 1
Success #stdin #stdout 0.01s 27712KB
stdin
Standard input is empty
stdout
9
10
5
20
30