Skip to content

Instantly share code, notes, and snippets.

@euncody
euncody / gist:10f3bf94a152ee1d4fad7a65f24f99dd
Last active October 30, 2025 07:19
[NomadeCode] Python_Challenge - Day4 : 계산기
playing = True
# +
def plus(a=0, b=0):
return a + b
# -
def minus(a=0, b=0):
return a - b
@euncody
euncody / gist:b744a9b6d9667978cd201501225149e0
Last active October 30, 2025 07:19
[NomadeCode] Python_Challenge - Day3 : 세금 계산
# 👇🏻 YOUR CODE 👇🏻:
# 연간 매출 계산
def get_yearly_revenue(monthly_revenue):
return monthly_revenue * 12
# 연간 비용 계산
def get_yearly_expenses(monthly_expenses):
return monthly_expenses * 12