How to get only the odd items from a list in Python

1 Answer

0 votes
a_list = [1, 2, 3, 4, 5, 6, 7, 8, 9]

odd_list = list(filter(lambda x: (x % 2 != 0), a_list))

print(odd_list)

'''
run:
 
[1, 3, 5, 7, 9]
 
'''

 



answered May 30, 2017 by avibootz

Related questions

1 answer 146 views
1 answer 150 views
1 answer 165 views
2 answers 229 views
2 answers 175 views
...