Advertisement
rfmonk

doctest_ex1.py

Sep 9th, 2014
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. #! /usr/bin/env python
  2. """
  3. """
  4. def square(x):
  5.     """
  6.    Squares x.
  7.    > square(2)
  8.    4
  9.    > square(-2)
  10.    4
  11.    """
  12.  
  13.     return x * x
  14.  
  15. if __name__ == '__main__':
  16.     import doctest
  17.     doctest.testmod()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement