pycharm 更改panda Dataframe 的宽度

cyvaqqii  于 2022-11-08  发布在  PyCharm
关注(0)|答案(1)|浏览(175)

我正在使用panda,并尝试为 Dataframe 中的所有列设置相同的宽度,我已经尝试了width和min_width,但它们没有效果。
程式码片段:

s2 = df.style
s2.use(style.set_table_styles(
        [{
                'selector': 'th',
                'props': [
                    ('background-color', 'rgb(235, 245, 255)'),
                    ('text-align', 'center'),
                    ('width', '200px')]
            },
            {
                'selector': 'td',
                'props': [
                    ('text-align', 'center')]
            }
        ])
  • 谢谢-谢谢
w1e3prcc

w1e3prcc1#

你可能想试试这个-

import pandas as pd

styles = [
    {
        'selector': 'th',
        'props': [
            ('background-color', 'rgb(235, 245, 255)'),
            ('text-align', 'center'),
            ('width', '200px')]
    },
    {
        'selector': 'td',
        'props': [
            ('text-align', 'center')]
    }
]

html = df.style.set_table_styles(styles)

html

相关问题