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
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
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Can you use Python
Thank you very much!

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

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images

Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question
Hello....Its still not correct.....

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
Follow-up Question
Thats incorrect...Whats wrong?

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
Knowledge Booster
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.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education