Answers for "arithmetic operation in python"

1

arithmetic operators in python

a = 90
b = 20
#additaddition 
print(a+b)
#subtraction
print(a-b)
#multiplication
print(a*b)
#divison
print(a/b)
#Exponentiation
print(a**b)
#floor divison
print(a//b)
Posted by: Guest on December-23-2021
0

why a Python Arithmetic Operators used

#Arithmetic operators are used with numeric values to perform common 
#mathematical operations:
Posted by: Guest on December-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language