Page 102 - Trackpad_V2.1_class8
P. 102

Program 13: To create a ticket vending simulation. If the age of a person lies between 10 to 20
                  years, the price of the ticket will be Rs. 200. If the age of a person lies between 20 to 60 years, the
                  price of the ticket will be Rs. 350. If the age of a person is greater than 60 years then the price of
                  the ticket will be Rs. 300.


                      Program13.py
                   File  Edit  Format    Run   Options   Window    Help

                   # Ticket Vending Machine
                   # Price of ticket is Rs. 200 is age is between 10 to 20.
                   # Price of ticket is Rs. 350 is age is between 20 to 60.
                   # Price of ticket is Rs. 300 is age is greater than 60.


                   age = int(input("Enter your age: "))

                   if (age>10 and age<20):
                       print("The price of the ticket is Rs. 200.")
                   elif (age>20 and age<60):
                       print("The price of the ticket is Rs. 350.")
                   elif (age>60):
                       print("Ihe price of the ticket is Rs. 300.")
                   else:
                       print("No need of ticket.")




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

                      Output

                   Enter your age: 25
                   The price of the ticket is Rs. 350.



                  Program 14: To create a number pattern using for loop


                      Program14.py
                   File  Edit  Format    Run   Options   Window    Help


                   #Program to create number pattern using for loop

                   for i in range(1,5):
                       print('3' * i)













                  100   Trackpad (V2.1)-VIII
   97   98   99   100   101   102   103   104   105   106   107