IT/Python: Codecademy
Python: 1 Python Syntax
Last72
2018. 2. 18. 17:02
# comment monty = True python = 1.234 monty_python = python ** 2 # Assign the variable total on line 8! meal = 44.50 tax = 6.75 / 100 tip = 15.0 / 100 meal = meal + meal * tax total = meal + meal * tip print("%.2f" % total)