0
Python inheritance
For the odds method,how to remove the items from the list thatâs not odds and return the original list only has the odd numbers?
2 Answers
+ 4
list(filter(lambda x: x%2==1, numlist))
0
another method with generator
list(p for p in numlist if p%2)