fork download
  1. N = [1,2,3,4,5]
  2.  
  3. B = len(list(filter(lambda i: i > 2, N)))
  4.  
  5. print(B)
Success #stdin #stdout 0.02s 28384KB
stdin
Standard input is empty
stdout
3