Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please debug the code from below to make it can print the total number of passengers (including both children and adults) and also the total

Please debug the code from below to make it can print the total number of passengers (including both children and adults) and also the total price of all the tickets combined. Tickets are $4 for each adult and free for children 12 years and under. (the copy of the code will also provide underneath the picture.

image text in transcribedPlease debug the code from below to make it can print the total number of passengers (including both children and adults) and also the total price of all the tickets combined. Tickets are $4 for each adult and free for children 12 years and under. (the copy of the code will also provide underneath the picture.

image text in transcribedimage text in transcribed

import sys

total_passengers = 0 total_price = 0 while True: user_input = input("Enter the passenger's age: ")

numeric = '0123456789' i = 0 num = False j = 0 while j

if user_input == "q" or user_input == "": print() break

if int(user_input) 12: print("One adult ticket added") total_price += 4 print() total_passengers += 1

print("There are a total of {} passengers. The total cost of all the tickets is ${}.".format(total_passengers, total_price))

Question 3 The program tickets.py calculates the total price of train tickets for all boarding passengers. The program should continuously ask the user to input the age of the passenger the user either types q to quit or presses Enter without typing any input. Any non-integer age entries should be ignored. Furthermore, any zero or negative age entries should also be ignored. After each valid age entry, the program should output the message Children travel for free! if the passenger is 12 years or younger. Otherwise, it should output the message One adult ticket added. At the end, the program should print the total number of passengers (including both children and adults) and also the total price of all the tickets combined. Tickets are $4 for each adult and free for children 12 years and under. tickets.py 1 import sys 2 3 total_passengers = 0 4 total_price = 0 5 while True: 6 ...user_input = input("Enter the passenger's age: ") 7 8 numeric = '0123456789 9 i = 0 10 num = False 11 j = 0 12 while j 12: 33 34 print("One adult ticket added") total_price += 4 print() total_passengers += 1 35 36 37 38 print("There are a total of {} passengers. The total cost of all the tickets is ${}.". format(total_passengers, total_price))

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Seven Databases In Seven Weeks A Guide To Modern Databases And The NoSQL Movement

Authors: Luc Perkins, Eric Redmond, Jim Wilson

2nd Edition

1680502530, 978-1680502534

More Books

Students also viewed these Databases questions