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 Testing First Steps With Testing Create a Doctest

2 Answers

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Not 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
PLUS
Casey Huckel
Courses Plus Student 4,257 Points
import 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
Chris Freeman
Treehouse Moderator 68,423 Points

FWIW, 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.