Find the sum of odd number from in given rang 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==1: sum=sum+nprint(“Sum of number is : “,sum) Output Enter starting number :5Enter end number :20Sum of number is : 96 View All Python Programs