Problem 1
1. Daily Expense Tracker (File I/O + Variables + Loops)
Write a program that:
Asks the user for today’s expenses (e.g., “Tea = 50”).
Stores each entry in a list.
Saves all expenses into a file named [Link].
Calculates the total spending for the day.
→ Use: loops, variables, file write, basic arithmetic.
Problem 2
2. Simple Calculator with Error Handling
Make a calculator that:
Takes two numbers from user
Takes an operator (+ - * /)
Performs calculation
If user enters wrong operator → show a helpful error message
If user divides by zero → handle the exception
→ Use: conditionals, exception handling, input handling.