Answers for "python add all numbers in number"

0

sum of numbers in python

def sum_(n):
    if n == 0:
        return n
    else:
        prev_n = sum_(n - 1)
        result = prev_n + n
        return result


s = sum_(5)

print(s)

#Output:
# 15
Posted by: Guest on August-21-2021
0

add 2 numbers in python

# This program adds two numbers

num1 = 1.5
num2 = 6.3

# Add two numbers
sum = num1 + num2

# Display the sum
print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
Posted by: Guest on October-20-2020

Code answers related to "python add all numbers in number"

Python Answers by Framework

Browse Popular Code Answers by Language