list out operators in python
Answers
Answered by
0
Answer:
+,-,//,=!,*,/
Explanation:
// = finds the reminder
=! = Not equal to
/ = finds quotient
** = multiplies the number by itself.
Eg. 3**3 = 3*3*3 = 27
2**4 = 2*2*2*2 = 16
7**2 = 7*7 = 49
rest of all operators are not so important.
Answered by
5
Answer:
Heya✌️♥️☺️Telugu here too....
Explanation:
✏️Python Operators
Operators are used to perform operations on variables and values.
Python divides the operators in the following groups:
- Arithmetic operators
- Assignment operators
- Comparison operators
- Logical operators
- Identity operators
- Membership operators
- Bitwise operators
✒️Hope it helps ✌️☺️♥️...
Similar questions