This Python script analyzes financial records stored in a CSV file.
- Calculates total number of months
- Computes total profit/loss
- Determines average monthly change
- Identifies the greatest increase and decrease in profits
- Ensure the
budget_data.csvfile is located in theResourcesfolder. - Run the script
pybank_main.py. - The output will be printed to the terminal and saved to
analysis/budget_analysis.txt.
PyBank/
├── Resources/
│ └── budget_data.csv
├── analysis/
│ └── budget_analysis.txt
├── pybank_main.py
└── README.md