Question Description
Project chapter3
Write a Python program to choose one of the following two options for your summer
Vacation. Your options are:
- Hawaii
- Bahamas
Your program should select one of the above options using if…elif…else statements.
Once an option is selected, your program should select one of the following two options using
if…else if…else if…else statement for airline ticket.
- US Air
- Delta
Once one of the above options is selected, your program should read the air fare for
a round trip. Your program should also select one of the following three options for number of
passengers using if…elif…elsestatements:
- One person
- Two persons
- Three persons
Once number of passengers is read, then your program should ask how many
passengers are underage of 18. There will be 25% discount for travelers underage of 18.
Compute the total cost of air fare for one family. Display round trip ticket price for adult,
air fare, round trip ticket price for person(s) underage of 18, airline name, location of
vacation and total cost of vacation.