Learn Lambda Functions by Building an Expense Tracker - Step 17

Tell us what’s happening:

I have been working on step 17 since yesterday and cannot figure it out.

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):
    total_expenses = lambda expense: expense['amount']
    
    

    

# User Editable Region


expenses = []

Your browser information:

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

Challenge Information:

Learn Lambda Functions by Building an Expense Tracker - Step 17

Remove the assignment.

To answer your question from the PM this…

total_expenses =

…is the assignment. Remove that and keep the lambda function.