2.5. How Expressions are EvaluatedΒΆ
The order that expressions are executed is the same as it is in math. You probably learned this ordering as PEMDAS (Parentheses, Exponents, Multiply/Divide, Add/Subtract) and is shown in the table below from highest precedence to lowest. If two symbols have the same precedence they are evaluated from left to right.
Operator |
Name |
---|---|
-x |
Negation |
x ** y |
Exponentiation |
x * y x / y x % y |
Multiplication, Division, and Modulo |
x + y x - y |
Addition and Subtraction |
Before you keep reading...
Making great stuff takes time and $$. If you appreciate the book you are reading now and want to keep quality materials free for other students please consider a donation to Runestone Academy. We ask that you consider a $10 donation, but if you can give more thats great, if $10 is too much for your budget we would be happy with whatever you can afford as a show of support.
You can change the default order by adding parentheses around part of an expression. Whatever math is inside the parentheses is done (using the same order of operations) before any operations outside the parentheses are done.