fork download
  1. def is_odd(n):
  2. lambda n:n % 2 == 1
  3.  
  4. L = list(filter(is_odd, range(1, 20)))
  5.  
  6. print(L)
  7.  
Success #stdin #stdout 0.08s 14084KB
stdin
Standard input is empty
stdout
[]