00:01
This question here asks us to calculate the following python expression, which is 4 plus 3, modulo 5.
00:11
In python and programming in general, python follows a specific order of operations.
00:18
So it follows a standard order of operations like pemdas, which is python, sorry, parentheses, exponous, multiplication, division, addition, and subtraction from left to right.
00:28
But in programming and in python specifically, a lot more operators are added.
00:33
For example, there's modulo, which is this.
00:36
There's also logical operators and boolean operators that also take a higher precedence than the ones that we already have...