5 Operators and Functions
() (parentheses) highest ^ or ** (exponentiation) NOT, unary +,- *,/,MOD,DIV +,- =,<,>,<=,>=, or # (relational) AND OR,EXOR lowestRemember that the order of execution for operations of the same priority level is from left to right. When parentheses are used, however, the operations within parentheses are executed first.