Skip to content

Instantly share code, notes, and snippets.

View parklab04's full-sized avatar

Sanghyeok Aidan Park parklab04

View GitHub Profile
# BLUEPRINT | DONT EDIT
import requests
movie_ids = [
238, 680, 550, 185, 641, 515042, 152532, 120467, 872585, 906126, 840430
]
# /BLUEPRINT
@parklab04
parklab04 / gist:2b0f1e636203e7fb843f182506bbdcbc
Created October 30, 2025 15:03
Nomad Coder Python Challenge Day 4
# BLUEPRINT | DONT EDIT
playing = True
while playing:
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
# πŸ‘‡πŸ» YOUR CODE πŸ‘‡πŸ»:
# πŸ‘‡πŸ» YOUR CODE πŸ‘‡πŸ»:
# /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