Learn Lambda Functions by Building an Expense Tracker - Step 19

Tell us what’s happening:

Where are my mistakes? What I should do?I’ve been working on this code for over an hour.

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

    

# User Editable Region

def total_expenses(expenses):
    test = lambda x: x * 2

    


    

# User Editable Region


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36

Challenge Information:

Learn Lambda Functions by Building an Expense Tracker - Step 19

Hi there and welcome to our community!

Your lambda expression should not be inside this function. Hit the Reset button to restore the starting code for this step and then add the lambda expression again, below the function (and not indented).