Python零散总结
1.# 显示所有过程结果
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = 'all'
注:
当读取的数据的行数过多时,notebook中会以省略号的形式省略,此时若想看到全部的信息,可使用下面的方式
pd.set_option('max_rows',100)
1.# 显示所有过程结果
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = 'all'
注:
当读取的数据的行数过多时,notebook中会以省略号的形式省略,此时若想看到全部的信息,可使用下面的方式
pd.set_option('max_rows',100)