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

Now, make a function named summarize that also takes a list. It should return the string "The sum of X is Y.", replacing

WHAT DID I DO WRONG

functions.py
def add_list(lst) :
  result = 5
  for item in lst:
    result += item 
    return result
  def summarize(lst) :
    X = list
    Y = add_list(list)
    resut = "the sum of {}".format(X, Y)

2 Answers

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

It looks likes a few things could be improved:

  1. def summarize(lst): needs to be outdented to the same level as def add_list(lst)
  2. summarize() needs a return resut statement.
  3. format() arguments need to match the number of targets "{}". You need another "{}"
drizzy drake
PLUS
drizzy drake
Courses Plus Student 2,469 Points
def add_list(lst) :
  result = 0
  for item in lst:
    result += item 
  return result

def summarize(list):
    X = list
    Y = add_list(list)
    result = "The sum of {} is {}".format(X, Y)
    return result

your result was wrong, You did resut and you didn't add 2 curly brackets to replace X and Y