The example module
Using factorial
This is an example text file in reStructuredText format. First import
factorial from the example module:
>>> from doctest_example import factorial
Now use it:
>>> factorial(6)
120
王鹏举