Python Operators
No account is required. Learn the material, try the examples, and mark it complete locally when you are ready to move on.
Operators are used to perform some operations on say variables, functions or in general python objects.
- Arithmetic operators
- Assignment operators
- Comparison operators
- Logical operators
- Identity operators
- Membership operators
- Bitwise operators
Arithmetic Operators
a = 10
b = 20# Addition operator
a + b30