Skip to content

Instantly share code, notes, and snippets.

@elleryq
Created June 17, 2013 07:49
Show Gist options
  • Save elleryq/5795271 to your computer and use it in GitHub Desktop.
Save elleryq/5795271 to your computer and use it in GitHub Desktop.
python doctest sample
def square(value):
"""
Multiple value 2 times.
>>> square(2)
4
>>> square(3)
9
"""
return value * value
if __name__ == "__main__":
import doctest
doctest.testmod()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment