Skip to content

Instantly share code, notes, and snippets.

View jihwan4155's full-sized avatar

jihwan4155

  • Joined Oct 29, 2025
View GitHub Profile
@jihwan4155
jihwan4155 / gist:7ac44512df2e6dd33381064a7ae30cba
Created October 30, 2025 03:39
노마드 코더 계산기
# BLUEPRINT | DONT EDIT
playing = True
# a = int(input("Choose a number:\n"))
# b = int(input("Choose another one:\n"))
# operation = input(
# "Choose an operation:\n Options are: + , - , * or /.\n Write 'exit' to finish.\n"
# )
# /BLUEPRINT
@jihwan4155
jihwan4155 / gist:6428caf32e320cc11b68c2a308b03026
Created October 29, 2025 03:47
노마드 코더 세금 계산기
# 👇🏻 YOUR CODE 👇🏻:
def get_yearly_revenue(monthly_revenue):
yearly_revenue = monthly_revenue * 12
return yearly_revenue
def get_yearly_expenses(monthly_expenses):
yearly_expenses = monthly_expenses * 12
return yearly_expenses