Page 104 - TrackpadV5.1_class8
P. 104
On running the above program, we get the following output:
Output
Enter the temperature in Celsius: 15
It's cool outside.
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.
Imagine, you possess the power of jump statement, allowing you to leap to any
part of the universe. Where would you jump to and what quests or missions
would you undertake in each dimension?
102 Pro (V5.1)-VIII

