简介
小于 1 分钟
简介
本文主要介绍Visual Studio Code中的Jupyter插件的使用技巧。
常用技巧
- 多行输出显示
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
- pandas显示行数设置
# 显示全部行
pd.set_option('display.max_rows', None) # 也可以指定具体行数
本文主要介绍Visual Studio Code中的Jupyter插件的使用技巧。
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
# 显示全部行
pd.set_option('display.max_rows', None) # 也可以指定具体行数