Print only even number 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,10): if n%2==0: print(n) Output 2468 View All Python Programs