python - 设置 Excel 列标题格式以获得更好的可见性和颜色

标签 python excel python-3.x pandas csv

我浏览了很多帖子,但没有找到执行以下操作的确切方法。 很抱歉附上屏幕截图(只是为了更好的可见性),我也会写它。 基本上看起来像 -

Name_of_the_Man Address_of_Man  City
Jordan           NC             LMN

输入 csv 看起来像

Available csv

需要输出 Need this

我手头有这段代码,它可以选择 csv 并将其附加为 Excel 中的工作表。

writer = pd.ExcelWriter('final.xlsx'), engine='xlsxwriter')
for f in glob.glob(os.path.join(Path, "*.csv")):
         df = pd.read_csv(f)
         df.to_excel(writer, sheet_name=os.path.basename(f))
writer.save()

我想要我的 csv 文件 - 在列标题之间有良好的空间和颜色。我已经浏览了此链接 Python - change header color of dataframe and save it to excel file但它没有达到目的 - 它正在将工作表本身与列分开着色。

更新: 下面得到了答案。也想知道这是否可能只是一个想法 enter image description here

最佳答案

您可以使用Pandas Excel output with user defined header formatsolution按内容更改宽度:

writer = pd.ExcelWriter("file.xlsx", engine='xlsxwriter')

# Convert the dataframe to an XlsxWriter Excel object. Note that we turn off
# the default header and skip one row to allow us to insert a user defined
# header. Also remove index values by index=False
df.to_excel(writer, sheet_name='Sheet1', startrow=1, header=False, index=False)

workbook  = writer.book
worksheet = writer.sheets['Sheet1']
# Add a header format.
header_format = workbook.add_format({
    'bold': True,
    'fg_color': '#ffcccc',
    'border': 1})
for col_num, value in enumerate(df.columns.values):
    worksheet.write(0, col_num, value, header_format)

    column_len = df[value].astype(str).str.len().max()
    # Setting the length if the column header is larger
    # than the max column value length
    column_len = max(column_len, len(value)) + 3
    print(column_len)
    # set the column length
    worksheet.set_column(col_num, col_num, column_len)

# Close the Pandas Excel writer and output the Excel file.
writer.save()

pic

更改了您的解决方案:

writer = pd.ExcelWriter('final.xlsx'), engine='xlsxwriter')
for f in glob.glob(os.path.join(Path, "*.csv")):
         df = pd.read_csv(f)
         df.to_excel(writer, sheet_name=os.path.basename(f))

        workbook  = writer.book
        worksheet = writer.sheets[os.path.basename(f)]
        # Add a header format.
        header_format = workbook.add_format({
            'bold': True,
            'fg_color': '#ffcccc',
            'border': 1})
        for col_num, value in enumerate(df.columns.values):
            worksheet.write(0, col_num, value, header_format)
            column_len = df[value].astype(str).str.len().max()
            # Setting the length if the column header is larger
            # than the max column value length
            column_len = max(column_len, len(value)) + 3
            print(column_len)
            # set the column length
            worksheet.set_column(col_num, col_num, column_len)

writer.save()

编辑:

writer = pd.ExcelWriter("file.xlsx", engine='xlsxwriter')

#skip 2 rows
df.to_excel(writer, sheet_name='Sheet1', startrow=2, header=False, index=False)

workbook  = writer.book
worksheet = writer.sheets['Sheet1']
# Add a header format.
header_format = workbook.add_format({
    'bold': True,
    'fg_color': '#ffcccc',
    'border': 1})

#create dictionary for map length of columns 
d = dict(zip(range(25), list(string.ascii_uppercase)))
#print (d)

max_len = d[len(df.columns) - 1]
print (max_len)
#C
#dynamically set merged columns in first row
worksheet.merge_range('A1:' + max_len + '1', 'This Sheet is for Personal Details')

for col_num, value in enumerate(df.columns.values):
    #write to second row
    worksheet.write(1, col_num, value, header_format)

    column_len = df[value].astype(str).str.len().max()
    column_len = max(column_len, len(value)) + 3
    worksheet.set_column(col_num, col_num, column_len)

# Close the Pandas Excel writer and output the Excel file.
writer.save()

关于python - 设置 Excel 列标题格式以获得更好的可见性和颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50664839/

相关文章:

python-3.x - 物体毁坏后相机保持打开状态,如何在OpenCV 4.1.2.30中关闭相机LED?

Python:运行一个进程/线程,即使在主进程完成后仍继续运行

python - 在函数中返回 2 个值

python 使用正则表达式创建新列

Python:平均分配给定数组中的数字

excel - 根据 Excel 中两个不相邻单元格的值创建范围

Python在嵌套for循环中循环遍历字符串

c# - 解析现有的 "complex"SQL 语句并转换为对自定义 API 调用的调用

vba - 总和最大但小于特定值的子集

python-3.x - pandas.to_dict 返回 None 与 nan 混合