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 trial2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsNot sure what you intended with all of the multi-line comments. The challenge can be solved by modifying the existing docstring:
def average(num_list):
"""Return the average for a list of numbers
Doc test gets added inside the function docstring
Start with the three gt signs followed by the test command
The results (expected value) of the test is on it's own line
Running test with data [1, 2]
>>> average([1, 2])
1.5
"""
return sum(num_list) / len(num_list)
Casey Huckel
Courses Plus Student 4,257 Pointsimport doctest
"""
>>>Blah blah
blah"""
"""
>>>def average(num_list):
"""Return the average for a list of numbers"""
"""
return sum(num_list) / len(num_list)
[MOD: added ```python markdown formatting -cf]
Chris Freeman
Treehouse Moderator 68,441 PointsFWIW, it's better to add your code into a comment under your original post. By posting additional information in an Answer, the forum shows this question with one or more answers and might not get the traffic / helpful viewing you are looking for.
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsHi Casey, Can you post your code?