gpt4 book ai didi

python - 在 Pandas 风格渲染中格式化日期

转载 作者:太空宇宙 更新时间:2023-11-04 03:09:03 24 4
gpt4 key购买 nike

我有一个包含三列的 Pandas 数据框,其中第一列是日期。为了生成 html 输出,我使用了这个:

html_string = df.style.format({'second': "{:0,.0f}",third: "{:0,.0f}"}).set_table_styles(styles).render()

如何指定日期的格式以及......类似的东西:

html_string = df.style.format({'Date': "%Y.%m",'second': "{:0,.0f}",third: "{:0,.0f}"}).set_table_styles(styles).render()

最佳答案

你可以这样做:

html_string = df.style.format({'Date': "{:%Y.%m}",
'second': "{:0,.0f}",
'third': "{:0,.0f}"}).set_table_styles(styles).render()

关于python - 在 Pandas 风格渲染中格式化日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38638025/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com