Tell us what’s happening:
I am not sure what exactly I am meant to do here, especially as to where to put the ‘pass’ function.
Your code so far
def add_expense(expenses, amount, category):
expenses.append({'amount': amount, 'category': category})
# User Editable Region
def print_expenses(expenses):
for expenses in print_expenses:
pass
# User Editable Region
expenses = []
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0
Challenge Information:
Learn Lambda Functions by Building an Expense Tracker - Step 15