list comprehension odd numbers python

Solutions on MaxInterview for list comprehension odd numbers python by the best coders in the world

showing results for - "list comprehension odd numbers python"
Sarah
12 Jan 2017
1L=([i%2 for i in range(10)])
2print(L)