Goal: Learn how to create variables and print their values.
Instructions:
Create a variable monthly_expenses and assign it a value of 3000.
Print the message: "The monthly expenses are: 3000" using the variable.
Expected Outcome: Learners should see the message correctly printed.
Python Code:
monthly_expenses = 3000
print("The monthly expenses are:",monthly_expenses)