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

lacks enough clarification to see a solution

this question is difficult to follow because i don't know how they want me to creat the list! is it passed as the function arguments or the list is a global variable that then used inside the function?? adding and returning value is then easy.

functions.py
def add_list():

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

The terms used to describe programming task take a while to learn.

"Make a function named add_list that takes a list", means the function can expect to be passed a list as an argument:

# define function that takes a list
def function_takes_a_list(list):
     return "list is {}".format(list)

# how it will be used or called by grader
function_takes_a_list([1, 2, 3])

You don't need to create the call of the function or include initial values for the list. The grader will supply the values when checking the code.