Skip to content

Instantly share code, notes, and snippets.

View boxerforensic's full-sized avatar

boxerforensic

View GitHub Profile
# BLUEPRINT | DONT EDIT
import requests
movie_ids = [
238, 680, 550, 185, 641, 515042, 152532, 120467, 872585, 906126, 840430
]
# /BLUEPRINT
for movie_id in movie_ids:
roop = True
while roop:
first_number = int(input("Choose a number:\n"))
second_number = int(input("Choose another one: \n"))
operator = input("Choose an operation\n \
Options are: + , - , * or /.\n \
Write 'exit' to finish.\n")
if operator == "exit":
roop = False
# /YOUR CODE
# BLUEPRINT | DONT EDIT
monthly_revenue = 5500000
monthly_expenses = 2700000
tax_credits = 0.01
def get_yearly_revenue(monthly_revenue):
return monthly_revenue * 12