I want a program to implement arithmetical operations in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I want a program to implement arithmetical operations in python

python language

12th Aug 2019, 2:11 PM
Meghachandra P
Meghachandra P - avatar
2 Answers
+ 8
Have you tried it yourself?
12th Aug 2019, 2:22 PM
Uni
Uni - avatar
0
num1 = int(input('Enter First number: ')) num2 = int(input('Enter Second number ')) add = num1 + num2 dif = num1 - num2 mul = num1 * num2 div = num1 / num2 floor_div = num1 // num2 power = num1 ** num2 modulus = num1 % num2 print('Sum of ',num1 ,'and' ,num2 ,'is :',add) print('Difference of ',num1 ,'and' ,num2 ,'is :',dif) print('Product of' ,num1 ,'and' ,num2 ,'is :',mul) print('Division of ',num1 ,'and' ,num2 ,'is :',div) print('Floor Division of ',num1 ,'and' ,num2 ,'is :',floor_div) print('Exponent of ',num1 ,'and' ,num2 ,'is :',power) print('Modulus of ',num1 ,'and' ,num2 ,'is :',modulus)
1st Jun 2020, 6:41 PM
Meghachandra P
Meghachandra P - avatar