@@ -25,14 +25,26 @@ In Python, **operators** are special symbols used to perform operations on varia
25
25
26
26
Python provides the following types of operators:
27
27
28
- 1 . [ Arithmetic Operators] ( #1-arithmetic-operators )
29
- 2 . [ Comparison Operators] ( #2-comparison-operators )
30
- 3 . [ Logical Operators] ( #3-logical-operators )
31
- 4 . [ Assignment Operators] ( #4-assignment-operators )
32
- 5 . [ Bitwise Operators] ( #5-bitwise-operators )
33
- 6 . [ Membership Operators] ( #6-membership-operators )
34
- 7 . [ Identity Operators] ( #7-identity-operators )
35
- 8 . [ Operator Precedence] ( #8-operator-precedence )
28
+ - [ Python Operators] ( #python-operators )
29
+ - [ Operator Categories] ( #operator-categories )
30
+ - [ Arithmetic Operators] ( #arithmetic-operators )
31
+ - [ Comparison Operators] ( #comparison-operators )
32
+ - [ Logical Operators] ( #logical-operators )
33
+ - [ Assignment Operators] ( #assignment-operators )
34
+ - [ Bitwise Operators] ( #bitwise-operators )
35
+ - [ Membership Operators] ( #membership-operators )
36
+ - [ Identity Operators] ( #identity-operators )
37
+ - [ Use Cases of Python Operators] ( #use-cases-of-python-operators )
38
+ - [ 1. ** Arithmetic Operators** ] ( #1-arithmetic-operators )
39
+ - [ 2. ** Comparison Operators** ] ( #2-comparison-operators )
40
+ - [ 3. ** Logical Operators** ] ( #3-logical-operators )
41
+ - [ 4. ** Assignment Operators** ] ( #4-assignment-operators )
42
+ - [ 5. ** Bitwise Operators** ] ( #5-bitwise-operators )
43
+ - [ 6. ** Membership Operators** ] ( #6-membership-operators )
44
+ - [ 7. ** Identity Operators** ] ( #7-identity-operators )
45
+ - [ 8. ** Operator Precedence** ] ( #8-operator-precedence )
46
+ - [ Summary Table] ( #summary-table )
47
+ - [ Conclusion] ( #conclusion )
36
48
37
49
38
50
## Arithmetic Operators
@@ -66,7 +78,7 @@ Used to compare two values and return a Boolean result (`True` or `False`).
66
78
67
79
## Logical Operators
68
80
69
- Used to combine conditional statements.
81
+ Used to combine conditional statements here .
70
82
71
83
| Operator | Description | Example | Result |
72
84
| ----------| -----------------------------------| ----------------------| --------|
0 commit comments