Skip to content

Instantly share code, notes, and snippets.

# 👇🏻 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):
if profit >100000:
def run_operation(a,b,operation):
if operation == 'exit':
pass
elif operation == '+':
return a+b
elif operation == '-':
return a-b
elif operation == '*':
return a*b
elif operation == '/':
# BLUEPRINT | DONT EDIT
import requests
movie_ids = [
238, 680, 550, 185, 641, 515042, 152532, 120467, 872585, 906126, 840430
]
# /BLUEPRINT