Answers for "how to make a python program that calculate the sum of first number to last numbers"

1

how to add numbers in python using for loop

n = input("Enter Number to calculate sum")
n = int (n)
sum = 0
for num in range(0, n+1, 1):
    sum = sum+num
print("SUM of first ", n, "numbers is: ", sum )
Posted by: Guest on March-29-2020
2

sum of any numbers in python

sum(list(map(int,input().split())))
Posted by: Guest on December-02-2020

Code answers related to "how to make a python program that calculate the sum of first number to last numbers"

Python Answers by Framework

Browse Popular Code Answers by Language