Learn Lambda Functions by Building an Expense Tracker - Step 15

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

Welcome to the forum @Vyper_Shade

You should create a for loop that iterates over expenses in your print_expenses function. Remember to use pass within the loop body.

What are you asked to iterate over?

Happy coding

Hi, thnx for replying, I managed to get past the challenge through some research.

1 Like