diff --git a/docs/python/python_operators.md b/docs/python/python_operators.md index 71e2b93e..1c4f47fe 100644 --- a/docs/python/python_operators.md +++ b/docs/python/python_operators.md @@ -21,32 +21,6 @@ tags: In Python, **operators** are special symbols used to perform operations on variables and values. Python supports a wide variety of operators categorized based on their functionality. -## Operator Categories - -Python provides the following types of operators: - -- [Python Operators](#python-operators) - - [Operator Categories](#operator-categories) - - [Arithmetic Operators](#arithmetic-operators) - - [Comparison Operators](#comparison-operators) - - [Logical Operators](#logical-operators) - - [Assignment Operators](#assignment-operators) - - [Bitwise Operators](#bitwise-operators) - - [Membership Operators](#membership-operators) - - [Identity Operators](#identity-operators) - - [Use Cases of Python Operators](#use-cases-of-python-operators) - - [1. **Arithmetic Operators**](#1-arithmetic-operators) - - [2. **Comparison Operators**](#2-comparison-operators) - - [3. **Logical Operators**](#3-logical-operators) - - [4. **Assignment Operators**](#4-assignment-operators) - - [5. **Bitwise Operators**](#5-bitwise-operators) - - [6. **Membership Operators**](#6-membership-operators) - - [7. **Identity Operators**](#7-identity-operators) - - [8. **Operator Precedence**](#8-operator-precedence) - - [Summary Table](#summary-table) - - [Conclusion](#conclusion) - - ## Arithmetic Operators Used to perform basic mathematical operations: