fork(1) download
  1. L = range(10)
  2. print(list(L[::2]))
Success #stdin #stdout 0.16s 10264KB
stdin
Standard input is empty
stdout
[0, 2, 4, 6, 8]