用pandas的sort_values对数据进行排序后输出,发现列名一直没法对齐,这是为什么?
闭关修行中......
原因是因为print操作是为了在console line下服务的,这个显示基本上只能满足基本需求。
用jupyter的话,可以直接去掉print,表格就会被解析为HTML表格,就没有这个问题了。
jupyter
print
但,一个code cell默认只能输出一个结果,如果同时输出
df1 df2
只会显示df2,如下图:
一个简单地策略是使用Ipython模块。
Ipython
from IPython.display import display display(df1) display(df2)
原因是因为print操作是为了在console line下服务的,这个显示基本上只能满足基本需求。
用
jupyter
的话,可以直接去掉print
,表格就会被解析为HTML表格,就没有这个问题了。但,一个code cell默认只能输出一个结果,如果同时输出
只会显示df2,如下图:
一个简单地策略是使用
Ipython
模块。