fix(curriculum): correct example output in budget app lab (#65914)

This commit is contained in:
Ananthu
2026-02-17 17:57:58 +05:30
committed by GitHub
parent 95075822fb
commit 8e7edb9f3d

View File

@@ -33,7 +33,7 @@ In this lab, you will build a simple budget app that tracks spending in differen
```py
food = Category('Food')
food.deposit(1000, 'deposit')
food.deposit(1000, 'initial deposit')
food.withdraw(10.15, 'groceries')
food.withdraw(15.89, 'restaurant and more food for dessert')
clothing = Category('Clothing')