Page 129 - Plus V4 with Adobe class 6
P. 129

The result of the above program will be:





















            Relational Operator

            Relational operators are used to compare the value of the two operands and returns True or False
            accordingly. The relational operators are described in the following table:
             Operator       Name       Description                                        Example        Output
                                                                                        (x=8 and y=6)


                 ==         Equal      It checks if the values of two operands              x == y       FALSE
                                       are equal or not. If yes, then the condition
                                       becomes true.
                 !=       Not equal    It checks if the values of two operands are          x != y       TRUE
                                       equal or not. If the values are not equal, then

                                       the condition becomes true.
                  >        Greater     It checks if the value of left operand is             x > y       TRUE
                             than      greater than the value of right operand. If
                                       yes, then the condition becomes true.
                  <       Less than    It checks if the value of left operand is less        x < y       FALSE

                                       than the value of right operand. If yes, then
                                       the condition becomes true.
                 >=        Greater     It checks if the value of left operand is            x >= y       TRUE
                           than or     greater than or equal to the value of right
                           equal to    operand. If yes, then the condition becomes

                                       true.
                 <=       Less than  It checks if the value of left operand is less         x <= y       FALSE
                          or equal to than or equal to the value of right operand. If
                                       yes, then the condition becomes true.













                                                                                                     #Python 127
   124   125   126   127   128   129   130   131   132   133   134