在 Python 中打印模块或函数的文档字符串
使用 __doc__
属性打印模块的文档字符串,例如 print(my_module.__doc__)
。 如果我们需要打印当前模块的文档字符串,请使用 __doc__
全局变量,例如 print(__doc__)
。
"""
This module's docstring.
"""
import functools
# functools.py - Tools for working with functions and callable objects
print(functools.__doc__)
# 👇️ This module's docstring.
print(__doc__)
我们使用了 __doc__
属性来打印文件的文档字符串。
__doc__
属性返回模块或函数的文档字符串,如果没有文档字符串则返回 None。
如果我们需要打印当前模块的文档字符串,请使用 __doc__
全局变量。
"""
This module's docstring.
"""
# 👇️ This module's docstring.
print(__doc__)
如果我们需要打印内置或第三方模块的文档字符串,请使用模块的 __doc__
属性。
import functools
# functools.py - Tools for working with functions and callable objects
print(functools.__doc__)
我们还可以访问模块中的特定方法并打印其文档字符串。
import functools
# partial(func, *args, **keywords) - new function with partial application
# of the given arguments and keywords.
print(functools.partial.__doc__)
如果我们需要以交互模式打印模块的简短文档,请使用 help()
函数。
import functools
print(help(functools))
要以交互模式打印当前模块的简短文档,请使用 __name__
全局变量。
"""
This module's docstring.
"""
print(help(__name__))
我们还可以使用 __doc__
属性打印函数的文档字符串。
在 Python 中打印函数的文档字符串
使用 __doc__
属性打印函数的文档字符串,例如 print(my_function.__doc__)
。 __doc__
属性返回函数的文档字符串。
def do_math(a, b):
"""Returns the sum of two numbers."""
print(do_math.__doc__)
return a + b
# Returns the sum of two numbers.
# 25
print(do_math(10, 15))
# 👇️ Returns the sum of two numbers.
print(do_math.__doc__)
我们使用了 __doc__
属性来打印函数的文档字符串。
__doc__
属性返回函数的文档字符串,如果函数没有文档字符串,则返回 None。
def do_math(a, b):
"""Returns the sum of two numbers."""
# 👇️ print docstring from inside of a function
print(do_math.__doc__)
return a + b
print(do_math.__doc__) # 👉️ Returns the sum of two numbers.
# -------------------------------------
# 👇️ without docstring
def example():
pass
print(example.__doc__) # 👉️ None
如果需要从函数内部打印函数的文档字符串,也可以使用 __doc__
属性。
如果需要在交互模式下打印函数的文档字符串,请使用 help()
函数。
def do_math(a, b):
"""Returns the sum of two numbers."""
return a + b
# Help on function do_math in module __main__:
# do_math(a, b)
# Returns the sum of two numbers.
# (END)
print(help(do_math))
__doc__
属性也可用于打印您导入的函数和方法的文档字符串。
from functools import partial
# partial(func, *args, **keywords) - new function with partial application
# of the given arguments and keywords.
print(partial.__doc__)
可以使用相同的方法打印我们导入的整个模块的文档字符串。
import functools
# functools.py - Tools for working with functions and callable objects
print(functools.__doc__)
相关文章
Python for 循环中的下一项
发布时间:2023/04/26 浏览次数:179 分类:Python
-
本文讨论了 Python 中的 for 循环以及如何通过使用 for 循环和示例来跳过列表的第一个元素。
Python While 循环用户输入
发布时间:2023/04/26 浏览次数:148 分类:Python
-
我们可以在 while 循环中使用 input() 函数来输入数据,直到在 Python 中满足某个条件。
在 Python 中将整数转换为罗马数字
发布时间:2023/04/26 浏览次数:87 分类:Python
-
本篇文章将介绍在 Python 中将整数转换为罗马数字。以下是一个 Python 程序的实现,它将给定的整数转换为其等效的罗马数字。
在 Python 中将罗马数字转换为整数
发布时间:2023/04/26 浏览次数:144 分类:Python
-
本文讨论如何在 Python 中将罗马数字转换为整数。 我们将使用 Python if 语句来执行此操作。 我们还将探讨在 Python 中将罗马数字更改为整数的更多方法。
在 Python 中读取 gzip 文件
发布时间:2023/04/26 浏览次数:70 分类:Python
-
本篇文章强调了压缩文件的重要性,并演示了如何在 Python 中使用 gzip 进行压缩和解压缩。
在 Python 中锁定文件
发布时间:2023/04/26 浏览次数:141 分类:Python
-
本文解释了为什么在 Python 中锁定文件很重要。 这讨论了当两个进程在没有锁的情况下与共享资源交互时会发生什么的示例,为什么在放置锁之前知道文件状态很重要,等等
在 Python 中将 PDF 转换为文本
发布时间:2023/04/26 浏览次数:196 分类:Python
-
在本教程中,我们将学习如何使用 Python 使用 PyPDF2、Aspose 和 PDFminer 将 PDF 文档转换为文本文件。
在 Python 中创建临时文件
发布时间:2023/04/26 浏览次数:53 分类:Python
-
本文讲解了tempfile库函数的四个子函数:TemporaryFile、NamedTemporaryFile、mkstemp、TemporaryDirectory。 每个部分都提供了适当的程序,以简化对概念的理解。