Find the sum of even number between 1 to 10 in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code sum=0for n in range(1,10): if n%2==0: sum=sum+nprint(“Sum of number is : “,sum) Output Sum of number is : 45 View All Python Programs