Table of Contents
show
Definition
- Operators are the constructs which can manipulate the value of operands
- Example: 5+ 2 = 7
- Here 5 and 2 are operands and + is operator
Types of Operators
Python supports the following types of operators
- Arithmetic operators
- Comparison (Relational) Operators
- Assignment Operators
- Logical Operators
- Bitwise Operators
- Membership Operators
- Identity Operators
Views: 3