有没有办法将文档字符串与它们所记录的函数分开?
我正在开发一个具有许多小函数的模块,但其文档字符串往往很长。文档字符串使得模块的工作变得很烦人,因为我必须不断地滚动长文档字符串才能找到一些实际代码。
有没有办法将文档字符串与它们所记录的函数分开?我真的希望能够在远离代码的文件末尾指定文档字符串,或者更好的是在单独的文件中指定文档字符串。
I'm working on a module with many small functions but whose docstrings tend to be quite long. The docstrings make working on the module irritating as I have to constantly scroll over a long docstring to find a little bit of actual code.
Is there a way to keep docstrings separate from the functions they document? I'd really like to be able to specify the docstrings at the end of the file away from the code or, even better, in a separate file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
函数的文档字符串可用作特殊属性 __doc__ 。
无论如何,这展示了这项技术。在实践中,您可以:
...或者您想要放入文档字符串中的任何内容。
The docstring for a function is available as the special attribute
__doc__
.That demonstrates the technique, anyway. In practice you can:
...or whatever you want to put in your docstrings.