我应该如何注释部分Python函数?
假设我有以下代码:
def func(x, y = 1, z = 2):
""" A comment about this function """
return x + y + z
another_func = partial(func, z = 4)
记录 another_func 函数的正确或 Pythonic 方式是什么?
say I have the following code:
def func(x, y = 1, z = 2):
""" A comment about this function """
return x + y + z
another_func = partial(func, z = 4)
What would be the correct or Pythonic way of documenting the another_func function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 http://docs.python.org/library/functools 上的partial() 描述.html#functools.partial
像这样:
See partial() description on http://docs.python.org/library/functools.html#functools.partial
Like this: