Skip to content

Instantly share code, notes, and snippets.

@mmonmini
mmonmini / main.py
Created April 15, 2026 14:08
tax calculation
# 👇🏻 YOUR CODE 👇🏻:
#(연간 매출 계산)
def get_yearly_revenue(monthly_revenue) :
return monthly_revenue * 12
#(연간 비용 계산)
def get_yearly_expenses(monthly_expenses):
return monthly_expenses * 12
#(세금 계산)
def get_tax_amount(profit):