Goal: Use arithmetic operators to perform calculations.
Instructions:
Create variables for annual_revenue (e.g., 120000) and annual_expenses (e.g., 80000).
Calculate the profit using these variables.
Print the profit.
Expected Outcome: Learners should output: "The annual profit is: 40000".
Python Code:
annual_revenue = 120000
annual_expenses = 80000
profit = annual_revenue - annual_expenses
print("The annual profit is:",profit)