SlideShare una empresa de Scribd logo
1 de 2
Descargar para leer sin conexión
There are three seating categories at a stadium. Class A seats cost $20, class B seats cost $15,
and Class C seats cost $10.
Write a simple python program that asks how many tickets from each class of seats were sold,
then display the amount of income generated from ticket sales.
Guidelines:
Define main ():
Declare the local variables under the main() program.
income_Aseats = 0.0, income_Bseats = 0.0, income_Cseats = 0.0, category = "", num_tickets =
0, seating_price = 0.0, need_more_tickets = 'Y'
Write a while loop, to get the user input and price based on the category
while(need_more_tickets.upper() != 'N'):
#Get the user input
category, num_tickets = getUserInput()
Calculate income for Category A, B, and C (Example for A is given)
if (category == 'A'):
income_Aseats = num_tickets * seating_price
Prompt the User if they need more tickets
Input function for need_more_tickets = input("Do yo... press Y to continue or press N to quit
Write the showIncome function to accept the income from class A, B, and C seats and display
the total income.
define showIncome(income_Aseats, income_Bseats, income_Cseats):
# Local variable
total_income = 0.0
Calculate total income. i.e. total_income = income_Aseats + income_Bseats +
income_Cseats
# Show results for A , B and C seats
print ("Income from class A seats: $", 
format(income_Aseats, '.2f'), sep='')
Write getSeatingPrice function to get seat category for A, B, and C using if statements (Example
for A is given)
getSeatingPrice(seat_class):
if (seat_class == 'A'):
return 20
Write getUserInput function to prompt the User to get the Category and number of tickets
print ("nWelcome to the Stadium Seating Application")
print("Category A - $20nCategory B - $15nCategory C - $10n")
get the category with input function
get num_tickets with input function (use int)
return category, num_tickets to the main function from where they have been called
Output:
Welcome to the Stadium Seating Application
Category A - $20
Category B - $15
Category C - $10
Enter the category (A, B or C): A
Enter the number of ticktes required: 10
Do you need more tickets?
press Y to continue or press N to quit: N
Income from class A seats: $200.00
Income from class B seats: $0.00
Income from class C seats: $0.00
Total income: $200.00

Más contenido relacionado

Similar a There are three seating categories at a stadium. Class A seats cost .pdf

Computer Science Sample Paper 2015
Computer Science Sample Paper 2015Computer Science Sample Paper 2015
Computer Science Sample Paper 2015Poonam Chopra
 
Please distinguish between the .h and .cpp file, create a fully work.pdf
Please distinguish between the .h and .cpp file, create a fully work.pdfPlease distinguish between the .h and .cpp file, create a fully work.pdf
Please distinguish between the .h and .cpp file, create a fully work.pdfneerajsachdeva33
 
Write a banking program that simulates the operation of your local ba.docx
 Write a banking program that simulates the operation of your local ba.docx Write a banking program that simulates the operation of your local ba.docx
Write a banking program that simulates the operation of your local ba.docxajoy21
 
Please follow the code and comments for description and outputs C.pdf
Please follow the code and comments for description and outputs C.pdfPlease follow the code and comments for description and outputs C.pdf
Please follow the code and comments for description and outputs C.pdfproloyankur01
 
2014 computer science_question_paper
2014 computer science_question_paper2014 computer science_question_paper
2014 computer science_question_papervandna123
 
Write the code above and the ones below in netbeans IDE 8.13. (Eli.pdf
Write the code above and the ones below in netbeans IDE 8.13. (Eli.pdfWrite the code above and the ones below in netbeans IDE 8.13. (Eli.pdf
Write the code above and the ones below in netbeans IDE 8.13. (Eli.pdfarihantmum
 
You are to write a program that computes customers bill for hisher.docx
 You are to write a program that computes customers bill for hisher.docx You are to write a program that computes customers bill for hisher.docx
You are to write a program that computes customers bill for hisher.docxajoy21
 

Similar a There are three seating categories at a stadium. Class A seats cost .pdf (8)

Computer Science Sample Paper 2015
Computer Science Sample Paper 2015Computer Science Sample Paper 2015
Computer Science Sample Paper 2015
 
Please distinguish between the .h and .cpp file, create a fully work.pdf
Please distinguish between the .h and .cpp file, create a fully work.pdfPlease distinguish between the .h and .cpp file, create a fully work.pdf
Please distinguish between the .h and .cpp file, create a fully work.pdf
 
Write a banking program that simulates the operation of your local ba.docx
 Write a banking program that simulates the operation of your local ba.docx Write a banking program that simulates the operation of your local ba.docx
Write a banking program that simulates the operation of your local ba.docx
 
Please follow the code and comments for description and outputs C.pdf
Please follow the code and comments for description and outputs C.pdfPlease follow the code and comments for description and outputs C.pdf
Please follow the code and comments for description and outputs C.pdf
 
2014 computer science_question_paper
2014 computer science_question_paper2014 computer science_question_paper
2014 computer science_question_paper
 
Unit4_2.pdf
Unit4_2.pdfUnit4_2.pdf
Unit4_2.pdf
 
Write the code above and the ones below in netbeans IDE 8.13. (Eli.pdf
Write the code above and the ones below in netbeans IDE 8.13. (Eli.pdfWrite the code above and the ones below in netbeans IDE 8.13. (Eli.pdf
Write the code above and the ones below in netbeans IDE 8.13. (Eli.pdf
 
You are to write a program that computes customers bill for hisher.docx
 You are to write a program that computes customers bill for hisher.docx You are to write a program that computes customers bill for hisher.docx
You are to write a program that computes customers bill for hisher.docx
 

Más de ambikagarmentsjdp

The speed control of an induction motor has input signals defined as.pdf
The speed control of an induction motor has input signals defined as.pdfThe speed control of an induction motor has input signals defined as.pdf
The speed control of an induction motor has input signals defined as.pdfambikagarmentsjdp
 
The Smith manufacturing company has estimated the following componen.pdf
The Smith manufacturing company has estimated the following componen.pdfThe Smith manufacturing company has estimated the following componen.pdf
The Smith manufacturing company has estimated the following componen.pdfambikagarmentsjdp
 
The Scientific Revolution led directly to the cultural period that f.pdf
The Scientific Revolution led directly to the cultural period that f.pdfThe Scientific Revolution led directly to the cultural period that f.pdf
The Scientific Revolution led directly to the cultural period that f.pdfambikagarmentsjdp
 
The role of government in promoting business ethicsActivity 2R.pdf
The role of government in promoting business ethicsActivity 2R.pdfThe role of government in promoting business ethicsActivity 2R.pdf
The role of government in promoting business ethicsActivity 2R.pdfambikagarmentsjdp
 
The Rectangle class headerAnd base class Shape headerThe code co.pdf
The Rectangle class headerAnd base class Shape headerThe code co.pdfThe Rectangle class headerAnd base class Shape headerThe code co.pdf
The Rectangle class headerAnd base class Shape headerThe code co.pdfambikagarmentsjdp
 
Thermometer measurements have tracked Earth�s surface temperature. W.pdf
Thermometer measurements have tracked Earth�s surface temperature. W.pdfThermometer measurements have tracked Earth�s surface temperature. W.pdf
Thermometer measurements have tracked Earth�s surface temperature. W.pdfambikagarmentsjdp
 
These are some of the contents in passwd2 fileIt has 1851 lines .pdf
These are some of the contents in passwd2 fileIt has 1851 lines .pdfThese are some of the contents in passwd2 fileIt has 1851 lines .pdf
These are some of the contents in passwd2 fileIt has 1851 lines .pdfambikagarmentsjdp
 
These are some of the contents in passwd2 file It has 1851 lines.pdf
These are some of the contents in passwd2 file It has 1851 lines.pdfThese are some of the contents in passwd2 file It has 1851 lines.pdf
These are some of the contents in passwd2 file It has 1851 lines.pdfambikagarmentsjdp
 
There is no more information provided to me other then what i alread.pdf
There is no more information provided to me other then what i alread.pdfThere is no more information provided to me other then what i alread.pdf
There is no more information provided to me other then what i alread.pdfambikagarmentsjdp
 
There is no more information provided to me. Determine the value of .pdf
There is no more information provided to me. Determine the value of .pdfThere is no more information provided to me. Determine the value of .pdf
There is no more information provided to me. Determine the value of .pdfambikagarmentsjdp
 
There is a period between when animals become infected and when they.pdf
There is a period between when animals become infected and when they.pdfThere is a period between when animals become infected and when they.pdf
There is a period between when animals become infected and when they.pdfambikagarmentsjdp
 
There is a link between security and quality.1. Examine the relati.pdf
There is a link between security and quality.1. Examine the relati.pdfThere is a link between security and quality.1. Examine the relati.pdf
There is a link between security and quality.1. Examine the relati.pdfambikagarmentsjdp
 
There are advantages to buying an existing business. Which of the fo.pdf
There are advantages to buying an existing business. Which of the fo.pdfThere are advantages to buying an existing business. Which of the fo.pdf
There are advantages to buying an existing business. Which of the fo.pdfambikagarmentsjdp
 
There are different types of Intrusion DetectionPrevention Systems..pdf
There are different types of Intrusion DetectionPrevention Systems..pdfThere are different types of Intrusion DetectionPrevention Systems..pdf
There are different types of Intrusion DetectionPrevention Systems..pdfambikagarmentsjdp
 
There are 4200 college instructors in Canada that teach at local com.pdf
There are 4200 college instructors in Canada that teach at local com.pdfThere are 4200 college instructors in Canada that teach at local com.pdf
There are 4200 college instructors in Canada that teach at local com.pdfambikagarmentsjdp
 
Then we need the rules that will allow for the queries that will ans.pdf
Then we need the rules that will allow for the queries that will ans.pdfThen we need the rules that will allow for the queries that will ans.pdf
Then we need the rules that will allow for the queries that will ans.pdfambikagarmentsjdp
 
The X axis shows how far away from the equator the population lives..pdf
The X axis shows how far away from the equator the population lives..pdfThe X axis shows how far away from the equator the population lives..pdf
The X axis shows how far away from the equator the population lives..pdfambikagarmentsjdp
 
The World Values Survey interviewed a random sample of people from n.pdf
The World Values Survey interviewed a random sample of people from n.pdfThe World Values Survey interviewed a random sample of people from n.pdf
The World Values Survey interviewed a random sample of people from n.pdfambikagarmentsjdp
 
The Yellow Company made year-end adjusting entries affecting each of.pdf
The Yellow Company made year-end adjusting entries affecting each of.pdfThe Yellow Company made year-end adjusting entries affecting each of.pdf
The Yellow Company made year-end adjusting entries affecting each of.pdfambikagarmentsjdp
 
The Worst Part Was That She Often Was Right. The Winston County Bank.pdf
The Worst Part Was That She Often Was Right. The Winston County Bank.pdfThe Worst Part Was That She Often Was Right. The Winston County Bank.pdf
The Worst Part Was That She Often Was Right. The Winston County Bank.pdfambikagarmentsjdp
 

Más de ambikagarmentsjdp (20)

The speed control of an induction motor has input signals defined as.pdf
The speed control of an induction motor has input signals defined as.pdfThe speed control of an induction motor has input signals defined as.pdf
The speed control of an induction motor has input signals defined as.pdf
 
The Smith manufacturing company has estimated the following componen.pdf
The Smith manufacturing company has estimated the following componen.pdfThe Smith manufacturing company has estimated the following componen.pdf
The Smith manufacturing company has estimated the following componen.pdf
 
The Scientific Revolution led directly to the cultural period that f.pdf
The Scientific Revolution led directly to the cultural period that f.pdfThe Scientific Revolution led directly to the cultural period that f.pdf
The Scientific Revolution led directly to the cultural period that f.pdf
 
The role of government in promoting business ethicsActivity 2R.pdf
The role of government in promoting business ethicsActivity 2R.pdfThe role of government in promoting business ethicsActivity 2R.pdf
The role of government in promoting business ethicsActivity 2R.pdf
 
The Rectangle class headerAnd base class Shape headerThe code co.pdf
The Rectangle class headerAnd base class Shape headerThe code co.pdfThe Rectangle class headerAnd base class Shape headerThe code co.pdf
The Rectangle class headerAnd base class Shape headerThe code co.pdf
 
Thermometer measurements have tracked Earth�s surface temperature. W.pdf
Thermometer measurements have tracked Earth�s surface temperature. W.pdfThermometer measurements have tracked Earth�s surface temperature. W.pdf
Thermometer measurements have tracked Earth�s surface temperature. W.pdf
 
These are some of the contents in passwd2 fileIt has 1851 lines .pdf
These are some of the contents in passwd2 fileIt has 1851 lines .pdfThese are some of the contents in passwd2 fileIt has 1851 lines .pdf
These are some of the contents in passwd2 fileIt has 1851 lines .pdf
 
These are some of the contents in passwd2 file It has 1851 lines.pdf
These are some of the contents in passwd2 file It has 1851 lines.pdfThese are some of the contents in passwd2 file It has 1851 lines.pdf
These are some of the contents in passwd2 file It has 1851 lines.pdf
 
There is no more information provided to me other then what i alread.pdf
There is no more information provided to me other then what i alread.pdfThere is no more information provided to me other then what i alread.pdf
There is no more information provided to me other then what i alread.pdf
 
There is no more information provided to me. Determine the value of .pdf
There is no more information provided to me. Determine the value of .pdfThere is no more information provided to me. Determine the value of .pdf
There is no more information provided to me. Determine the value of .pdf
 
There is a period between when animals become infected and when they.pdf
There is a period between when animals become infected and when they.pdfThere is a period between when animals become infected and when they.pdf
There is a period between when animals become infected and when they.pdf
 
There is a link between security and quality.1. Examine the relati.pdf
There is a link between security and quality.1. Examine the relati.pdfThere is a link between security and quality.1. Examine the relati.pdf
There is a link between security and quality.1. Examine the relati.pdf
 
There are advantages to buying an existing business. Which of the fo.pdf
There are advantages to buying an existing business. Which of the fo.pdfThere are advantages to buying an existing business. Which of the fo.pdf
There are advantages to buying an existing business. Which of the fo.pdf
 
There are different types of Intrusion DetectionPrevention Systems..pdf
There are different types of Intrusion DetectionPrevention Systems..pdfThere are different types of Intrusion DetectionPrevention Systems..pdf
There are different types of Intrusion DetectionPrevention Systems..pdf
 
There are 4200 college instructors in Canada that teach at local com.pdf
There are 4200 college instructors in Canada that teach at local com.pdfThere are 4200 college instructors in Canada that teach at local com.pdf
There are 4200 college instructors in Canada that teach at local com.pdf
 
Then we need the rules that will allow for the queries that will ans.pdf
Then we need the rules that will allow for the queries that will ans.pdfThen we need the rules that will allow for the queries that will ans.pdf
Then we need the rules that will allow for the queries that will ans.pdf
 
The X axis shows how far away from the equator the population lives..pdf
The X axis shows how far away from the equator the population lives..pdfThe X axis shows how far away from the equator the population lives..pdf
The X axis shows how far away from the equator the population lives..pdf
 
The World Values Survey interviewed a random sample of people from n.pdf
The World Values Survey interviewed a random sample of people from n.pdfThe World Values Survey interviewed a random sample of people from n.pdf
The World Values Survey interviewed a random sample of people from n.pdf
 
The Yellow Company made year-end adjusting entries affecting each of.pdf
The Yellow Company made year-end adjusting entries affecting each of.pdfThe Yellow Company made year-end adjusting entries affecting each of.pdf
The Yellow Company made year-end adjusting entries affecting each of.pdf
 
The Worst Part Was That She Often Was Right. The Winston County Bank.pdf
The Worst Part Was That She Often Was Right. The Winston County Bank.pdfThe Worst Part Was That She Often Was Right. The Winston County Bank.pdf
The Worst Part Was That She Often Was Right. The Winston County Bank.pdf
 

Último

microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 

Último (20)

microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 

There are three seating categories at a stadium. Class A seats cost .pdf

  • 1. There are three seating categories at a stadium. Class A seats cost $20, class B seats cost $15, and Class C seats cost $10. Write a simple python program that asks how many tickets from each class of seats were sold, then display the amount of income generated from ticket sales. Guidelines: Define main (): Declare the local variables under the main() program. income_Aseats = 0.0, income_Bseats = 0.0, income_Cseats = 0.0, category = "", num_tickets = 0, seating_price = 0.0, need_more_tickets = 'Y' Write a while loop, to get the user input and price based on the category while(need_more_tickets.upper() != 'N'): #Get the user input category, num_tickets = getUserInput() Calculate income for Category A, B, and C (Example for A is given) if (category == 'A'): income_Aseats = num_tickets * seating_price Prompt the User if they need more tickets Input function for need_more_tickets = input("Do yo... press Y to continue or press N to quit Write the showIncome function to accept the income from class A, B, and C seats and display the total income. define showIncome(income_Aseats, income_Bseats, income_Cseats): # Local variable total_income = 0.0 Calculate total income. i.e. total_income = income_Aseats + income_Bseats + income_Cseats # Show results for A , B and C seats print ("Income from class A seats: $", format(income_Aseats, '.2f'), sep='') Write getSeatingPrice function to get seat category for A, B, and C using if statements (Example for A is given)
  • 2. getSeatingPrice(seat_class): if (seat_class == 'A'): return 20 Write getUserInput function to prompt the User to get the Category and number of tickets print ("nWelcome to the Stadium Seating Application") print("Category A - $20nCategory B - $15nCategory C - $10n") get the category with input function get num_tickets with input function (use int) return category, num_tickets to the main function from where they have been called Output: Welcome to the Stadium Seating Application Category A - $20 Category B - $15 Category C - $10 Enter the category (A, B or C): A Enter the number of ticktes required: 10 Do you need more tickets? press Y to continue or press N to quit: N Income from class A seats: $200.00 Income from class B seats: $0.00 Income from class C seats: $0.00 Total income: $200.00