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