fork download
  1. t = [1, 12, -3, 8]
  2.  
  3. print(t[0]) # 1
  4. print(t[1]) # 12
  5. print(t[2]) # -3
  6. print(t[3]) # 8
Success #stdin #stdout 0.04s 8888KB
stdin
Standard input is empty
stdout
1
12
-3
8