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 | |
| 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 |
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 👇🏻: | |
| 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 |