Skip to content

Instantly share code, notes, and snippets.

View Robinstory's full-sized avatar

Robin Robinstory

View GitHub Profile
# 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
@Robinstory
Robinstory / gist:53fadb5afe15277a2d4f2679b41f2646
Created October 29, 2025 18:02
Python Challenge Assignment 03
# 👇🏻 YOUR CODE 👇🏻:
# /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):