Question: Below is the python that I have the answers 2 and i need help to convert it into raptor which is the program i've posted
Below is the python that I have the answers 2 and i need help to convert it into raptor which is the program i've posted below


Python - Program There are three seating categories at a stadium. For a softball game, Class A seats cost $20, Class B seat cost $15, and Class C seat cost $10. Write a program that asks how many tickets for each class of seats were sold, and then displays the amount of income generated from tickets sales Expert Answer Anonymous answered this 94 answers Was this answer helpful? Okay, so the Total Income Generation by Tickets in a Softball Game, using the Python program is aiven below print ("Softball Game") a -int(input("Enter Number of Category A Tickets Sold:") b-int(input("Enter Number of Category B Tickets Sold:") c int(input("Enter Number of Category C Tickets Sold:") d=20"a; e=15+b; f=10C g-d+e+f; print (The Total Income Earned by Category A is",+d) print ("The Total Income Earned by Category B is",+e) print ("The Total Income Earned by Category C is",+f) print ("The Total Income earned is",+g) This Program first Calculated the amount by each Category, using the variables d,e and f, by the price Specified for each Category of Ticket
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
