Add Two Numbers In Python
Chapter:
Python
Last Updated:
13-09-2018 19:08:20 UTC
Program:
/* ............... START ............... */
# Adding float values
val1 = 55.66
val2 = 63.37
intval = 10
intval2 = 11
# Adding two floating point numbers
sum = float(val1) + float(val2)
# Adding two int values
sum1 = intval+intval2
# Displaying the result
print("The sum of given numbers is: ", sum)
print("The sum of given numbers is: ", sum1)
/* ............... END ............... */
Output
The sum of given numbers is: 119.03
The sum of given numbers is: 21
Notes:
-
Python program to add two numbers, program takes two float and two int values for addition of numbers.
- First we will add two floating point numbers (100.99 and 76.15), we use use float function to convert the values to float or simply use can use "sum = val1 +val2" to add two floating point numbers.
- In the same way you can add two integer values, above program adds two integer numbers (10,11).
Tags
Python program to add two numbers