Learn Lambda Functions by Building an Expense Tracker - Step 25

Tell us what’s happening:

I think I did exactly what you ask but the code isn’t working. Please help.

Your code so far

def add_expense(expenses, amount, category):
    expenses.append({'amount': amount, 'category': category})
    
def print_expenses(expenses):
    for expense in expenses:
        print(f'Amount: {expense["amount"]}, Category: {expense["category"]}')
    

# User Editable Region

def total_expenses(expenses):
    return (lambda expense: expense['amount'])

# User Editable Region


expenses = []

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/132.0

Challenge Information:

Learn Lambda Functions by Building an Expense Tracker - Step 25

The instructions didn’t talk about returning from your total_expenses() function

Thank you @JeremyLT. I read return and automatically thought of the wrong thing. :laughing: