Answers for "how do i print a list of odd numbers in python?"

0

list comprehension odd numbers python

L=([i%2 for i in range(10)])
print(L)
Posted by: Guest on March-03-2021

Code answers related to "how do i print a list of odd numbers in python?"

Python Answers by Framework

Browse Popular Code Answers by Language