fork download
  1. print([i for i in range(10) if i%2==0])# your code goes here
Success #stdin #stdout 0.02s 9984KB
stdin
Standard input is empty
stdout
[0, 2, 4, 6, 8]