python inspect获取多行注释
时间: 2023-08-26 10:05:28 浏览: 163
python对多行代码注释
可以使用 `inspect.getdoc()` 函数来获取函数或类的多行注释。
示例代码:
```python
import inspect
def my_function():
"""
This is a multi-line
docstring for my_function.
"""
pass
print(inspect.getdoc(my_function))
```
输出结果:
```
This is a multi-line
docstring for my_function.
```
阅读全文