fork download
  1. print(list(filter(lambda x: x % 2 == 0, range(10))))
Success #stdin #stdout 0.01s 28384KB
stdin
Standard input is empty
stdout
[0, 2, 4, 6, 8]