fork download
  1. print([x for x in range(20) if x % 2 == 0])
Success #stdin #stdout 0.02s 8688KB
stdin
Standard input is empty
stdout
[0, 2, 4, 6, 8, 10, 12, 14, 16, 18]