python 使用none和docstrings指定动态默认参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用none和docstrings指定动态默认参数相关的知识,希望对你有一定的参考价值。

def log(message, when=None):
    when = datetime.now() if when is None else when
    print(' % s: % s' % (when, message)

以上是关于python 使用none和docstrings指定动态默认参数的主要内容,如果未能解决你的问题,请参考以下文章

什么放在python模块docstring? [关闭]

python代码docstring生成文档之sphinx

请问python描述符property中的self.fget(instance)怎么理解

如何更改pycharm python docstring颜色

简明Python docstrings

刚学python 使用Atom来写,装了插件后一直提示Missing docstring in public module [pep257]