• Goal: Use arithmetic operators to perform calculations.

  • Instructions:

    1. Create variables for annual_revenue (e.g., 120000) and annual_expenses (e.g., 80000).

    2. Calculate the profit using these variables.

    3. 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)