Page 105 - TP_Play_V2.1_class7
P. 105

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












                                                                           Conditional Statements in Python      103
   100   101   102   103   104   105   106   107   108   109   110