Answers for "python how to add 2 numbers"

0

how to add two numbers in python

num1 = int(input('any number'))
num2 = int(input('any number'))
print(sum(num1,num2))
Posted by: Guest on June-07-2021
0

python how to add 2 numbers

num1 = 2.3
num2 = 1.2
print(num1+num2)
Posted by: Guest on August-05-2021

Code answers related to "python how to add 2 numbers"

Python Answers by Framework

Browse Popular Code Answers by Language