ipython库中display
时间: 2023-11-29 07:45:06 浏览: 142
python数据分析与展示
```python
# 使用display函数显示display函数的文档
from IPython.display import display
display(display.__doc__)
```
输出结果为:
```
Display hook specifications.
Hooks that can be added to a user's environment to customize the behavior
of the notebook.
"""
# ...
```
阅读全文