Skip to content

Commit a385161

Browse files
authored
Update videogamefan.py
Signed-off-by: Bubbles The Dev <[email protected]>
1 parent f84afde commit a385161

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Python-Fundamentals-part1/student_activity/videogamefan.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,9 @@ def calculate_six_month_income(monthly_salary):
4444
six_month_income = monthly_salary * 6
4545
return six_month_income
4646

47-
# Example usage
48-
monthly_salary = 1000
4947
six_month_income = calculate_six_month_income(monthly_salary)
50-
print(f"The income for 6 months is ${six_month_income:.2f}")
48+
print(f"The income for 6 months is ${six_month_income:.2f}")
49+
print("Income for 6 months has been calculated.")
5150

5251

5352
# STUDENT PASSED ACTIVITY

0 commit comments

Comments
 (0)