We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d02299 commit 56aa135Copy full SHA for 56aa135
Sum_of_EvenNos_in_A_range.py
@@ -0,0 +1,9 @@
1
+initial=int(input("Enter the lower limit number:"))
2
+final=int(input("Enter the higher limit number:"))
3
+
4
+sum=0
5
+for i in range(initial,final+1):
6
+ if i%2==0:
7
+ sum+=i
8
9
+print("The sum of even numbers from ",initial," to ",final,"is -> ",sum)
0 commit comments