Please write a program which estimates a user's typical food expenditure. The program asks the user how many times a week they eat at the student cafeteria. Then it asks for the price of a typical student lunch, and for money spent on groceries during the week. Based on this information the program calculates the user's typical food expenditure both weekly and daily. The program should function as follows: How many times a week do you eat at the student cafeteria? 4 The price of a typical student lunch? 2.5 How much money do you spend on groceries in a week? 28.5 Average food expenditure: Daily: 5.5 euros Weekly: 38.5 euros Sample output

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter5: Looping
Section: Chapter Questions
Problem 1GZ
icon
Related questions
Question

Can you use Python programming language to wirte this  code?

Thank you very much!

Please write a program which estimates a user's typical food expenditure.
The program asks the user how many times a week they eat at the student cafeteria.
Then it asks for the price of a typical student lunch, and for money spent on groceries
during the week.
Based on this information the program calculates the user's typical food expenditure
both weekly and daily.
The program should function as follows:
How many times a week do you eat at the student cafeteria? 4
The price of a typical student lunch? 2.5
How much money do you spend on groceries in a week? 28.5
Average food expenditure:
Daily: 5.5 euros
Weekly: 38.5 euros
1
# Write your solution here
Sample output
Transcribed Image Text:Please write a program which estimates a user's typical food expenditure. The program asks the user how many times a week they eat at the student cafeteria. Then it asks for the price of a typical student lunch, and for money spent on groceries during the week. Based on this information the program calculates the user's typical food expenditure both weekly and daily. The program should function as follows: How many times a week do you eat at the student cafeteria? 4 The price of a typical student lunch? 2.5 How much money do you spend on groceries in a week? 28.5 Average food expenditure: Daily: 5.5 euros Weekly: 38.5 euros 1 # Write your solution here Sample output
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Hello....Its still not correct.....

Please write a program which estimates a user's typical food expenditure.
The program asks the user how many times a week they eat at the student cafeteria.
Then it asks for the price of a typical student lunch, and for money spent on groceries
during the week.
Based on this information the program calculates the user's typical food expenditure
both weekly and daily.
The program should function as follows:
How many times a week do you eat at the student cafeteria? 4
The price of a typical student lunch? 2.5
How much money do you spend on groceries in a week? 28.5
Average food expenditure:
Daily: 5.5 euros
Weekly: 38.5 euros
10
11
12
13
14
15
16
1
2
3
cafeteria = int(input ("How many times a week do you eat at the student cafeteria? "))
4 lunch_price= float (input ("The price of a typical student lunch? "))
5 grocery_spend = float (input("How much money do you spend on groceries in a week? "))
6
# Calculate expenditure
7
total_spend (cafeteria * lunch_price)+ grocery_spend
daily spend total_spend / 7
8
9
from decimal import Decimal
▶ RUN
# Print result
print("Average food expenditure: ")
#
Test Results
First method (Format till 1 decimal place only.)
print("Dailv: f:.1f euros".format(dailv spend))
O TEST
Reset
FAIL: PythonEditorTest: test_2_additional_tests
with inputs 0, 0, and 0 output is expected to contain row:
Daily: 0.0 euros
Sample output
your program's output was:
Average food expenditure:
Daily: 0 euros
Weekly: 0 euros
Need help?
Close
Transcribed Image Text:Please write a program which estimates a user's typical food expenditure. The program asks the user how many times a week they eat at the student cafeteria. Then it asks for the price of a typical student lunch, and for money spent on groceries during the week. Based on this information the program calculates the user's typical food expenditure both weekly and daily. The program should function as follows: How many times a week do you eat at the student cafeteria? 4 The price of a typical student lunch? 2.5 How much money do you spend on groceries in a week? 28.5 Average food expenditure: Daily: 5.5 euros Weekly: 38.5 euros 10 11 12 13 14 15 16 1 2 3 cafeteria = int(input ("How many times a week do you eat at the student cafeteria? ")) 4 lunch_price= float (input ("The price of a typical student lunch? ")) 5 grocery_spend = float (input("How much money do you spend on groceries in a week? ")) 6 # Calculate expenditure 7 total_spend (cafeteria * lunch_price)+ grocery_spend daily spend total_spend / 7 8 9 from decimal import Decimal ▶ RUN # Print result print("Average food expenditure: ") # Test Results First method (Format till 1 decimal place only.) print("Dailv: f:.1f euros".format(dailv spend)) O TEST Reset FAIL: PythonEditorTest: test_2_additional_tests with inputs 0, 0, and 0 output is expected to contain row: Daily: 0.0 euros Sample output your program's output was: Average food expenditure: Daily: 0 euros Weekly: 0 euros Need help? Close
Solution
Bartleby Expert
SEE SOLUTION
Follow-up Question

Thats incorrect...Whats wrong?

How many times a week do you eat at the student cafeteria? 4
The price of a typical student lunch? 2.5
How much money do you spend on groceries in a week? 28.5
Average food expenditure:
Daily: 5.5 euros
Weekly: 38.5 euros
program SHI did Tunction as TOHOWS.
1 # Ask for user input
A WNT
2 cafeteria = int(input("How many times a week do you eat at the student cafeteria? "))
4
5
3 lunch_price= float (input("The price of a typical student lunch? "))
grocery_spend = float(input ("How much money do you spend on groceries in a week? "))
6
7
# Calculate expenditure
total_spend = (cafeteria * lunch_price) + grocery_spend
8 daily_spend = total_spend / 7
9
10
# Print result
11
print("Average food expenditure: ")
12 print("Daily: {:.2f} euros".format(daily_spend))
13 print("Weekly: {:.2f} euros".format(total_spend))
RUN
TEST
Reset
Sample output
Submissions Results
FAIL: FoodExpenditure Test: test_0
With inputs 4, 2.5 and 21.5 output is expected to contain row:
Daily: 4.5 euros
your program's output was:
Average food expenditure:
Daily: 4.50 euros
Weekly: 31.50 euros
Need help?
Close
Transcribed Image Text:How many times a week do you eat at the student cafeteria? 4 The price of a typical student lunch? 2.5 How much money do you spend on groceries in a week? 28.5 Average food expenditure: Daily: 5.5 euros Weekly: 38.5 euros program SHI did Tunction as TOHOWS. 1 # Ask for user input A WNT 2 cafeteria = int(input("How many times a week do you eat at the student cafeteria? ")) 4 5 3 lunch_price= float (input("The price of a typical student lunch? ")) grocery_spend = float(input ("How much money do you spend on groceries in a week? ")) 6 7 # Calculate expenditure total_spend = (cafeteria * lunch_price) + grocery_spend 8 daily_spend = total_spend / 7 9 10 # Print result 11 print("Average food expenditure: ") 12 print("Daily: {:.2f} euros".format(daily_spend)) 13 print("Weekly: {:.2f} euros".format(total_spend)) RUN TEST Reset Sample output Submissions Results FAIL: FoodExpenditure Test: test_0 With inputs 4, 2.5 and 21.5 output is expected to contain row: Daily: 4.5 euros your program's output was: Average food expenditure: Daily: 4.50 euros Weekly: 31.50 euros Need help? Close
Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Constants and Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781305480537
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT