
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Types of Operator in Python
Operators are the constructs which can manipulate the value of operands.
Consider the expression 4 + 5 = 9. Here, 4 and 5 are called operands and + is called operator.
Python language supports the following types of operators.
- Arithmetic Operators
- Comparison (Relational) Operators
- Assignment Operators
- Logical Operators
- Bitwise Operators
- Membership Operators
- Identity Operators
- Related Articles
- Explain function of % operator in Python.
- Inplace operator in Python
- Ternary Operator in Python?
- Operator Functions in Python
- What is function of ^ operator in Python
- What is @ operator in Python?
- String Formatting Operator in Python
- What is operator binding in Python?
- What is tilde (~) operator in Python?
- What is modulo % operator in Python?
- What is correct name of * operator available in Python?
- What is the purpose of the `//` operator in python?
- What is "not in" operator in Python?
- What is Python equivalent of the ! operator?
- Is there an equivalent of C’s “?:” ternary operator in Python?

Advertisements