<aside> 💡 Use this template to create guidelines for all of the engineers on your team. Add a table of contents by typing /table of and pressing enter.

</aside>

How Operators work in Python

https://www.youtube.com/watch?v=WYCBr_ZhJVs

Arithmetic Operators

+ - * / % // **

Addition

print(10 + 20)

30

Substruction

print(20 - 10)

10

Multiplication

print(3 * 5)

15

Divide

print(7/2)