Operators
Operators perform arithmetic, comparison, and logical operations on values.
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.
Python Tutorial
Operators perform arithmetic, comparison, and logical operations on values.
a, b = 10, 3
print(a + b, a // b, a ** b)