Skip to content

Instantly share code, notes, and snippets.

View Snowhitegirl1's full-sized avatar

Snowhitegirl1

  • Joined Oct 29, 2025
View GitHub Profile
@Snowhitegirl1
Snowhitegirl1 / main.py
Created November 1, 2025 08:17
#6 Python project
# BLUEPRINT | DONT EDIT
import requests
movie_ids = [
238, 680, 550, 185, 641, 515042, 152532, 120467, 872585, 906126, 840430
]
# /BLUEPRINT
@Snowhitegirl1
Snowhitegirl1 / main.py
Last active October 30, 2025 12:59
#4 Python project
# 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
# πŸ‘‡πŸ» 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):
if profit > 100000: