fork download
  1.  
  2. L = list(filter(lambda n:n%2==1, range(1, 20)))
  3.  
  4. print(L)
  5.  
  6. # your code goes here
  7. # your code goes here
Success #stdin #stdout 0.12s 14232KB
stdin
Standard input is empty
stdout
[1, 3, 5, 7, 9, 11, 13, 15, 17, 19]