programming-examples/python/_Basics/Python Program to Find the Sum of Natural Numbers.py

17 lines
425 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
# Python program to find the sum of natural numbers up to n where n is provided by user
# change this value for a different result
num = 16
# uncomment to take input from the user
#num = int(input("Enter a number: "))
if num < 0:
print("Enter a positive number")
else:
sum = 0
# use while loop to iterate un till zero
while(num > 0):
sum += num
num -= 1
print("The sum is",sum)