Print odd number only between 1 to 10 in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code for n in range(1,21): if n%2==1: print(n) Output 13579 View All Python Programs