Find the sum of even number between 1 to 10 in python
View All Python Programs Source Code sum=0 for n in range(1,10): if n%2==0: sum=sum+n print(“Sum of number is : “,sum) Output Sum of number is : 45 View All Python Programs
Find the sum of even number between 1 to 10 in python Read More »