#!/usr/bin/env python # coding: utf-8 # # Chapter 02 Tip Calculator # # In[1]: # 01 식사 meal = 44.50 # In[2]: # 02 세금 Tax meal = 44.50 tax = 0.0675 # In[3]: # 03 팁 Tip meal = 44.50 tax = 0.0675 tip = 0.15 # In[4]: # 04 한 줄에 쓰기 meal = 44.50 tax = 0.0675 tip = 0.15 meal = meal + meal * tax # In[5]: # 05 모아 보기 meal = 44.50 tax = 0.0675 tip = 0.15 meal = meal + meal * tax total = meal + meal * tip print("total: %.2f" % total) print("total: %10.2f" % total) print("meal: %10.2f, tax:%10.2f, tip:%20.2f" % (meal, tax, tip))