Learn Lambda Functions by Building an Expense Tracker - Step 17

Tell us what’s happening:

I have already written the code right, and redid this a million times, but I can’t get ahead

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 sum(map(lambda expense: expense['amount'], expenses))

# User Editable Region


expenses = []

Your browser information:

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

Challenge Information:

Learn Lambda Functions by Building an Expense Tracker - Step 17

You are over-complicating things by a country mile. You only need to retrieve the value of ‘amount’ in the expense dictionary. Back in Step 11, it shows you have to set up a Lambda function.