Lab 1 Python 1

Lab Description

In this lab we used code academy to better understand syntax errors and other functions of python

Codes:

meal = 44.50
tax = 0.0675
tip = 0.15

meal = meal + meal * tax
total= meal + meal * tip

print(“%.2f” % total)

Screenshots

screenshot

Leave a Reply

Your email address will not be published. Required fields are marked *