What are operators in Python?
Operators are symbols used to perform operations on variables and values.
Main types of operators in Python:
Arithmetic operators
Comparison operators
Logical operators
Assignment operators
Membership operators
Identity operators
Example:
a = 10
b = 5
print(a + b)