Answers for "Write a program that reads in a number and prints the sum of all values from 1 up to the number. python"

0

Write a program that reads in a number and prints the sum of all values from 1 up to the number. python

# Function to get sum of digits  
def getSum(n): 
     
    sum = 0
    for digit in str(n):  
      sum += int(digit)       
    return sum
    
n = 12345
print(getSum(n))
Posted by: Guest on August-09-2021

Code answers related to "Write a program that reads in a number and prints the sum of all values from 1 up to the number. python"

Python Answers by Framework

Browse Popular Code Answers by Language