Page 110 - PortGPT_V2.1_C7_Flipbook
P. 110

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












                  108   Premium Edition-VII
   105   106   107   108   109   110   111   112   113   114   115