jupyter notebook多行输出
时间: 2023-12-16 12:02:23 浏览: 267
jupyter notebook 多行输出实例
可以通过以下两种方法实现Jupyter Notebook多行输出:
方法一:
1. 在cmd命令行中执行命令:jupyter notebook --generate-config,生成配置文件。
2. 在C:\Users\Administrator.ipython\profile_default目录下新建一个.py文件,文件名为ipython_config.py(可以用pycharm直接生成)。
3. 将以下代码添加到ipython_config.py文件中:
```python
c = get_config()
c.InteractiveShell.ast_node_interactivity = "all"
```
4. 保存并关闭文件。
5. 重启Jupyter Notebook后,即可直接多行输出结果。
方法二:
1. 在Jupyter Notebook中添加以下代码:
```python
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
```
2. 运行代码后,即可实现多行输出。如果想要永久输出,可以将代码添加到Jupyter Notebook的配置文件中。
阅读全文