fork download
  1. t = [11, -9, 20, 99, 1000]
  2.  
  3. print(t[0]) # 11
  4. print(t[1]) # -9
  5. print(t[2]) # 20
  6. print(t[3]) # 99
  7. print(t[4]) # 1000
Success #stdin #stdout 0.02s 9072KB
stdin
Standard input is empty
stdout
11
-9
20
99
1000