Get startedGet started for free

Identifying proper docstrings

We covered how to write fully-fledged docstrings. Before writing one of your own, this exercise will help you practice by having you identify a properly formatted docstring.

In this exercise, you'll be using the functions goldilocks(), rapunzel(), mary(), and sleeping_beauty() which have been loaded in your environment.

This exercise is part of the course

Software Engineering Principles in Python

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Run the help on all 4 functions
help(goldilocks)
____(rapunzel)
help(____)
____(____)
Edit and Run Code