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
rohit rangan
Courses Plus Student 272 PointsI cant find the answer to the code challenge in functions where you have to make a function called add_list first part
Make a function named add_list that takes a list. The function should then add all of the items in the list together and return the total. Assume the list contains only numbers. You'll probably want to use a for loop. You will not need to use input(). this is the question
4 Answers
Nejc Vukovic
Full Stack JavaScript Techdegree Graduate 51,574 PointsHi rohit.
summ = 0
def add_list(list):
for i in list:
sum += list[i]
I should be something like this. Adding a link to the challenge would help ;)
rohit rangan
Courses Plus Student 272 Pointsthank alot
Nejc Vukovic
Full Stack JavaScript Techdegree Graduate 51,574 PointsWelcome. Did it work though?
rohit rangan
Courses Plus Student 272 Pointsyeah it did I just had to modify the code a bit
Nejc Vukovic
Full Stack JavaScript Techdegree Graduate 51,574 PointsGlad it helped :)
Ming Jun Lim
10,060 Pointsnumbers = [1,2,3]
def add_list(num): return sum(num);
add_list(numbers);
^try this