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 trialKaty Ullrich
1,648 PointsPython basic- challenge task 1 of 2
Do I need to type the add_list?
# 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():
for list in add_list:
1 Answer
Dan Garrison
22,457 PointsHi Katy,
So a few things with your code. First, list
is a reserved word in python, which means you won't want to use it in your for loop as you did here. I would recommend using something like item
or number
. You are also missing the argument for your function. Remember, the function should accept a list as an argument. So you will need to put something in between the parenthesis of your function. Finally, you will want to initialize your total
variable before the for loop so you can add each number in the list to the total. Once the loop completes you will need to return total
.