================================================================
Operators and Expressions in Python
================================================================
=>An Operator is a Symbol, which is used to Perform Certain Operation on the Data /
Values / Objects.
=>An Expression is a Collection of Objects / Values Connected with an Operator.
=>In Python Programming, we have 7 Types of Operators. They are
1. Arithmetic Operators
2. Assignment Operator
3. Relational Operators (Comparision Operator)
4. Logical Operators (Comparision Operator)
5. Bitwise Operators--Most IMP
6. Membership Operators
a) 'in' Operator
b) 'not in' Operator
7. Identity Operators
a) 'is' Operator
b) 'is not' Operator
-----------------------------------------------------------------------------------
--------------------------------------------------------------
NOTE1: Python Programming Lang Does not Support Unary Operators Like ++ and --
Operators.
NOTE2: Python Programming Lang Does not Support Ternary Operator of C, C++ and Java
( Varname: Exp1?Exp2:Exp3)
------------------------------------------------------------
NOTE3: Python Programming Supports Its Own Ternary Operator: if..else Operator
NOTE4: Python Programming Supports Short hand Operators Like += -= /= >>=
~=...etc
-----------------------------------------------------------------------------------
--------------------------------------------------------------