python Python - doctest

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python - doctest相关的知识,希望对你有一定的参考价值。

# add this to the end of the module

if __name__ == "__main__":
    import doctest
    doctest.testmod()

以上是关于python Python - doctest的主要内容,如果未能解决你的问题,请参考以下文章

python Python - doctest

python 文档测试:doctest

python测试标准库doctest

python doctest的一些应用:

可以在jupyter单元函数上运行python doctest吗?

如何在 python 中使用带有修饰函数的 doctest?