Learn Lambda Functions by Building an Expense Tracker - Step 27

Tell us what’s happening:

I dont get what im supposed to do here i did pass the map() function to sum() function like what has been done in the previous step

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):
    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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36

Challenge Information:

Learn Lambda Functions by Building an Expense Tracker - Step 27

you also need to return the result

1 Like

I understand that. i tried the print function and the return function and none worked

show your code with return, also reminder, return is not a function

the thing is im not sure what im supposed to write after return

you need to return the sum function

i tried different ways to return the sum function but it turned out i had to paste the entire previous line XD

yes, if you want to return the output of a line you need the return keyword in front of that entire line

Thank you. I didnt know that