MCPcopy Create free account
hub / github.com/Mrinank-Bhowmick/python-beginner-projects / Expense

Class Expense

projects/Personal-Finance-tracker/main.py:1–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Expense:
2 def __init__(self, name, amount, category):
3 self.name = name
4 self.amount = amount
5 self.category = category
6
7
8class FinanceManager:

Callers 1

add_expenseMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected