Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics (Retired) Putting the "Fun" Back in "Function" Functions

Rabih Atallah
Rabih Atallah
3,405 Points

please what's wrong with my code, it keeps failing the question challenge to add the numbers inside a list

What's wrong with my code

functions.py
# add_list([1, 2, 3]) should return 6
# summarize([1, 2, 3]) should return "The sum of [1, 2, 3] is 6."
# Note: both functions will only take *one* argument each.
def add_list(L):
    tot = 0
    for i in L:
        tot = tot + i
    print(tot)
add_list([1,2,3])

5 Answers

Gavin Ralston
Gavin Ralston
28,770 Points

Also... be sure to return the result from your function. :)

Rabih Atallah
Rabih Atallah
3,405 Points

It worked with "return"!! thanks Gavin!

Gavin Ralston
Gavin Ralston
28,770 Points

It looks like there are two parts to this challenge, and you'll need to write a second function:

summarize([1, 2, 3]) should return "The sum of [1, 2, 3] is 6."

So you'd need to def summarize() ....

Rabih Atallah
Rabih Atallah
3,405 Points

Thanks your answer! but it's still not working

Gavin Ralston
Gavin Ralston
28,770 Points

Does it provide you with any information in the error message?

That red box doesn't always include helpful responses, but in many cases it does.

Rabih Atallah
Rabih Atallah
3,405 Points

no information in the error message and I wrote it without calling and still not working

Gavin Ralston
Gavin Ralston
28,770 Points

There's information in the error message. It states it was expecting a 6, but it didn't get that value back from the function, which needs to return a value, not print it.