Page 140 - Trackpad_V5_Book 7
P. 140

Operator Precedence

            An arithmetic expression without parentheses will be evaluated from left to right using the rule of
            precedence of operators.



                    Priority                Operator                                Name



                      First                      ()                                Parenthesis

                    Second                       **                                 Exponent

                     Third                    *, /, %, //         Multiplication, Division, Modulus, Floor Division

                    Fourth                      +, –                          Addition, Subtraction

                      Fifth                ==, !=, >, <, >=, <=                   Comparison
                     Sixth            =, +=, -=, *=, /=, %=, **=, //=              Assignment

                    Seventh                 and, or, not                             Logical

            Write a program to use operators in Python.


















                                Which type of applications can be developed in python?



            PUNCTUATORS
            Punctuators are also called separators as they are used to separate lines of codes, variables, etc.

            The following characters are used as punctuators in Python: ` # \ () [] {} @ , : . ‘ =
               Brackets []   indicate list.

               Parentheses ()   indicate tuples, function calls, function parameters for grouping expressions
              etc.

               Comma (,)   used as a separator in a function argument list or variable declaration.
               Colon (:)   indicates a labelled statement or conditional operator symbol.

               Equal sign (=)   used to initialise the value of variable.







            138   Pro (Ver. 5.0)-VII
   135   136   137   138   139   140   141   142   143   144   145