In an unparenthesized Python expression, how do * and / relate to + and -?
*
/
+
-
Addition and subtraction are always evaluated first.
Multiplication and division are evaluated before addition and subtraction.
All four operators are evaluated strictly left to right with equal precedence.
Python chooses an order based on the numeric values.