Page 101 - modular4.0
P. 101

Chapter Profile
                 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  99
   96   97   98   99   100   101   102   103   104   105   106