We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f84afde commit a385161Copy full SHA for a385161
Python-Fundamentals-part1/student_activity/videogamefan.py
@@ -44,10 +44,9 @@ def calculate_six_month_income(monthly_salary):
44
six_month_income = monthly_salary * 6
45
return six_month_income
46
47
-# Example usage
48
-monthly_salary = 1000
49
six_month_income = calculate_six_month_income(monthly_salary)
50
-print(f"The income for 6 months is ${six_month_income:.2f}")
+print(f"The income for 6 months is ${six_month_income:.2f}")
+print("Income for 6 months has been calculated.")
51
52
53
# STUDENT PASSED ACTIVITY
0 commit comments