Page 140 - Trackpad_V1_Book 7_Flipbook
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, Modulo, 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 (,)   is used as a separator in a function argument list or variable declaration.

                      Colon (:)   indicates a labelled statement or conditional operator symbol.

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



                  138   Trackpad (Version 1.0)-VII
   135   136   137   138   139   140   141   142   143   144   145