This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /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 |