Python Operators

Types of Operators

Arithmetic, assignment, comparison, logical, and bitwise operators.

Operator Precedence

Operators follow standard mathematical precedence; use parentheses to override.

Examples

# Arithmetic
print(2 + 3 * 4)   # 14

# Comparison
print(5 > 3)       # True

# Logical
print(True and False)  # False