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 trialAJ Longstreet
Treehouse Project ReviewerI feel I'm doing something very wrong but I'm not sure what... return("the sum of [arg] is Y")
I know what I want it to do but not how to make it work... lol
# 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(num):
return(sum(num))
def summarize(numb):
return("The sum of %d is %d."(numb, sum(numb))
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsIn your summarize
function, you are casting the numb
argument as a decimal value using '%d'. Instead, cast it as a string:
def summarize(numb):
return("The sum of %s is %d."(numb, sum(numb)))
# or use the '.format' method
def summarize(numb):
return("The sum of {} is {}.".format(numb, sum(numb)))
Additionally, this challenge intends for you to solve the add_list
challenge using a loop instead of the sum
function.
EDIT: added missing closing paren as mentioned by Michel van Essen
jason chan
31,009 Pointsdef add_list(lst):
# set our current total to 0.
total = 0
# for each item in the passed-in argument 'lst'...
for item in lst:
# added each item to the total
total = total + item
# return current total value
return total
Chris Freeman
Treehouse Moderator 68,441 PointsThis doesn't answer the OP question which is asking about formatting of the return statement.
This does however illustrate the intended solution for add_list
that uses a loop instead of the sum
function
AJ Longstreet
Treehouse Project ReviewerThank you for the insight into the intended solution.
AJ Longstreet
Treehouse Project ReviewerAJ Longstreet
Treehouse Project ReviewerThank you very much.
Michel van Essen
8,077 PointsMichel van Essen
8,077 PointsGreat help, thanks! Just for those who are struggling as well, the last line is missing a closing parenthesis