This is a beginner-friendly Python terminal app that helps you track your expenses by saving item names and prices to a local file. It also totals your spending and displays it when requested.
- Add new purchases with item name and cost
- Save data to a text file (
expenses.txt) - View the total amount you've spent
- Simple, menu-based interface
-
Run the script:
python expense_tracker.py -
Choose an option:
1: Add a new expense2: View total spending3: Exit the program
-
All expenses are saved in
expenses.txt.
What would you like to do?
1 - Add a new expense
2 - View total expenses
3 - Exit
> 1
What did you purchase? Coffee
How much did you pay for the item? 3.50
Expense saved to file!
- Python 3.x
This is a local terminal-based app. Future updates may include a GUI, CSV export, or category filtering.
Created by Daniel Jarvis – Python Developer in Progress 🚀