Find the sum of even number in given range in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code st=int(input(“Enter starting number :”))end=int(input(“Enter end number :”))sum=0for n in range(st,end): if n%2==0: sum=sum+nprint(“Sum of number is : “,sum) Output Enter starting number :5Enter end number :15Sum of number is : 50 View All Python Programs