In math, we use order of operations. Multiplication and division goes first, unless brackets, then addition and subtraction. Python also has them, just with more rules. The order of operations goes from highest to lowest rank, in order: parentheses ( 1+1 ) * 2 exponents 1 ** 2 unary plus and minus +a, -a multiplication, […]