Python Program To Add Two Numbers
Input:
num1 = 4.7
num2 = 8.3
sum = float(num1) + float(num2)
print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
Output:
The Sum Of 4.7 And 8.3 Is 13
...
Showing posts with label Python_Programming. Show all posts
Showing posts with label Python_Programming. Show all posts