Python Tutorial

Python Operators

Source: Bro Code

Operators

Operators perform arithmetic, comparison, and logical operations on values.

PYTHON
a, b = 10, 3
print(a + b, a // b, a ** b)
Try it Yourself
Run this PYTHON example in your local environment or course sandbox.