suchen

Heim  >  Fragen und Antworten  >  Hauptteil

python - 用pandas展示数据输出时列名不能对齐?

用pandas的sort_values对数据进行排序后输出,发现列名一直没法对齐,这是为什么?

阿神阿神2803 Tage vor877

Antworte allen(1)Ich werde antworten

  • 伊谢尔伦

    伊谢尔伦2017-04-18 10:09:44

    原因是因为print操作是为了在console line下服务的,这个显示基本上只能满足基本需求。

    jupyter的话,可以直接去掉print,表格就会被解析为HTML表格,就没有这个问题了。

    但,一个code cell默认只能输出一个结果,如果同时输出

    df1
    df2

    只会显示df2,如下图:

    一个简单地策略是使用Ipython模块。

    from IPython.display import display
    
    display(df1)
    display(df2)

    Antwort
    0
  • StornierenAntwort