• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

  • 共95篇

    python3.X - 数据分析 - Pandas

关闭

返回栏目

关闭

返回python3.X - 数据分析 - Pandas栏目

86 - 导出数据 - df.to_html() - HTML

作者:

贺及楼

成为作者

更新日期:2022-06-25 17:16:30

to_html()
  1. import numpy as np
  2. import pandas as pd
  3. print(df.to_html())
  4. print(df.to_html(columns=[0])) # 输出指定列
  5. print(df.to_html(bold_rows=False)) # 表头不加粗体
  6. # 表格指定样式,支持多个
  7. print(df.to_html(classes=['class1', 'class2']))