The order of execution works as in standard arithmetic calculations. This means we can use parentheses in our code:
>>> (2 + 10) / 26.0>>> 10 / (1 + 1)5.0
There could be any number of nested parentheses.