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

hi I am also struggling to complete this step of the project and I have a for loop that I think would iterate over everything in the print_expenses function

hi @Ethan1 , please create your own topic to ask for help

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.