fork(2) download
  1. N = [1,2,3,4,5]
  2.  
  3. B = len([i for i in N if i > 2])
  4.  
  5. print(B)
Success #stdin #stdout 0.01s 28384KB
stdin
Standard input is empty
stdout
3