Answers for "arithmetic in python"

0

arithmetic in python

print(10 + 2) # Addition
print(10 - 2) # Subtraction
print(10 * 2) # Multiplication
print(10 / 2) # Division
print(10 % 3) # Modulus
print(10 // 2) # Floor Division
print(10 ** 2) # Exponent
Posted by: Guest on September-28-2021
0

arithmetic operators in python

Arithmetic operators: Arithmetic operators are used to perform mathematical 
  operations like addition, subtraction, multiplication and division.
Posted by: Guest on November-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language