Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Python Simple Programming Write a program in Python that calculates the tip and total for a meal at a restaurant. When your program is run

Python Simple Programming

Write a program in Python that calculates the tip and total for a meal at a restaurant.

When your program is run it should ...

  • Calculate the tip and total for a meal for a restaurant
  • Print the name of the application "Tip Calculator"
  • Get input from the user for cost of meal and tip percent
  • Print the tip and total amounts.
  • The formula for calculating the tip amount is: tip = cost of meal * (tip percent / 100)
  • The program should accept decimal entries like 52.31 and 15.5. Assume the user will enter valid data.
  • The program should round the results to a maximum of two decimal places

Running a Sample Program

Be sure to test your work so that it runs in a manner shown below.

The data I entered is in bold maroon... but your program should run properly for any valid value entered by a user.

Tip Calculator

Cost of meal: 52.31

Tip percent: 20

Tip amount: 10.46

Total amount: 62.77

Use meaningful variable names (e.g. use firstname, not x)

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

Data Management Databases And Organizations

Authors: Richard T. Watson

3rd Edition

0471418455, 978-0471418450

More Books

Students also viewed these Databases questions

Question

122. If X is distributed as N(0, 1), find the pdf of .

Answered: 1 week ago