what are the different operators in python?
operators : an operator is a character that represents a specific mathematical or logical action or process.
operators in python:
- Arithmetic operators: used tr numeric value
- Assignment operators
- Comparison operators
- Logical operators
- Identity operators
- Membership operators
- Bitwise operators
assignment operators:
assignment operators are used to assigning value.
=
+=
-=
*=
/=
//=
%=
**=
example:
number=20
print(number)
number+=20
print(number)
number*=20
print(number)
number-=200
print(number)
number/=20
print(number)
number//=20
print(number)
number%=20
print(number)
number**=2
print(number)
output:
20
40
800
600
300.0
150
7
49
arithmetic operators:
arithmetic operators return values after the specified arithmetic operations which are as follows:
+: returns addition of two values
-:return subtraction of two values
%: returns reminder
*: returns multiplication
/: returns quotient with decimal
//: quotient without decimal
**:exponential
example:
print("addition is",3+2)
print(subtraction is",3-2)
print("mutiplication is",3*2)
print("quotient with decimal is",5/2)
print("quotient without decimal is",5//2)
print("reminder is",5%2)
print("expoenetial is",3**2)
output:
5
1
6
2.2
2
1
0 Comments