Page 96 - TP_Modular_V2.1_Class7
P. 96

On running the program given on previous page, we get the following output:

                      Output

                   Enter the name of the student: Amit
                   Enter the age of the student: 18
                   Enter the marks of the student: 57
                   Amit is too young for college

                   Enter the name of the student: Kanak
                   Enter the age of the student: 23
                   Enter the marks of the student: 87
                   Kanak is selected for college




                  Program 6: To check if the given number is lucky or not, if the given number is greater than zero

                  and is even, then print ‘Lucky number’ else print ‘Not a lucky number’.

                      Program6.py
                   File  Edit  Format    Run   Options   Window    Help

                   #Program to check lucky number
                   number = int(input('Enter a number: '))
                   if(number > 0):
                       if(number % 2 == 0):
                           print('Lucky number')
                       else:
                           print('Not a lucky number')
                   else:
                       print('Try again....')





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

                      Output

                   Enter a number: 21
                   Not a lucky number


                   Enter a number: 12
                   Lucky number












                   94       Modular (Ver. 2.1)-VII
   91   92   93   94   95   96   97   98   99   100   101