Page 92 - TP_Modular_V2.1_Class7
P. 92

Indented statement block

                  # if block ends here
                   Clickipedia


                    In Python, the non-zero value is interpreted as True. None and 0 are interpreted as False.



                  Program 1: To check whether a given number is positive.

                      Program1.py

                   File  Edit  Format    Run   Options   Window    Help

                   #Program to check if a number is positive
                   n = int (input ('Enter a number:'))
                   if(n > 0):
                       print('Entered number is positive')


                   #Statement outside the if statement
                   print('All numbers greater than 0 are positive')





                  On running the above program, we get the following output:

                      Output

                   Enter a number:6
                   Entered number is positive
                   All numbers greater than 0 are positive


                   Enter a number:-9
                   All numbers greater than 0 are positive



                  Program 2: To demonstrate the if statement.

                      Program2.py
                   File  Edit  Format    Run   Options   Window    Help

                   #Program to display the message using if statement
                   days = int(input('How many days are there in a leap year? '))


                   if(days == 366):
                       print('Your answer is correct, Good Job')







                   90       Modular (Ver. 2.1)-VII
   87   88   89   90   91   92   93   94   95   96   97