Home python Mathematical Operators

Mathematical Operators

32 second read
0
0
188

Mathematical Operators is useful in python to perform the calculation.

+Addition
Subtraction
*Multiplication
/Division
%Modulus
//Integer Division
**Power
print(3+2)
print(3-2)
print(3*3)
print(9/3)
print(10%3)
print(14%3)
print(9//3)
print(14//3)
print(15//3)
print(3**3)
print(2**2)
print(5**3)
print(3**5)
print(pow(3,5))

i have attached the video link below. which will do this tutorials step by step.

    Load More Related Articles
    • Java Beans

      A Java Bean is a reusable software component that follows a specific set of conventions. J…
    • Java String Methods

      Java provides a rich set of built-in methods for handling String operations efficiently. S…
    • Java Developer Jobs

      Java remains one of the most in-demand programming languages worldwide, powering everythin…
    Load More By admin
    Load More In python

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    Check Also

    Java Beans

    A Java Bean is a reusable software component that follows a specific set of conventions. J…