Python - 自动调整 excel 文件列的宽度

Python - Automatically adjust width of an excel file's columns

新手 - 我有一个 Python 脚本,可以根据指定的值调整 excel 文件不同列的宽度:

import openpyxl
from string import ascii_uppercase

newFile = "D:\Excel Files\abc.xlsx"

wb = openpyxl.load_workbook(filename = newFile)        
worksheet = wb.active

for column in ascii_uppercase:
    if (column=='A'):
        worksheet.column_dimensions[column].width = 30
    elif (column=='B'):
        worksheet.column_dimensions[column].width = 40            
    elif (column=='G'):
        worksheet.column_dimensions[column].width = 45            
    else:
        worksheet.column_dimensions[column].width = 15

wb.save(newFile)

有没有什么方法可以将每列的宽度调整到最佳值,而不需要为不同的列明确指定它(意思是,不使用这个“if-elif-elif- ......-elif-else”结构)? 谢谢!

如果可能,您应该确定列中最长条目的长度并使用它来设置宽度。

我假设您可以在 ascii_uppercase 中使用 for entry。

我在移动 atm 上,所以不能给出具体的代码示例,但我之前所说的应该可以帮助您更接近您想要实现的目标。

for col in worksheet.columns:
     max_length = 0
     column = col[0].column_letter # Get the column name
     for cell in col:
         try: # Necessary to avoid error on empty cells
             if len(str(cell.value)) > max_length:
                 max_length = len(str(cell.value))
         except:
             pass
     adjusted_width = (max_length + 2) * 1.2
     worksheet.column_dimensions[column].width = adjusted_width

这可能会变得更整洁,但它确实起作用了。您需要根据查看时使用的字体的优点来调整 adjusted_width 值。如果你使用单排版,你可以得到精确的,但它不是一对一的相关性,所以你仍然需要稍微调整一下。

如果你想在没有单排版的情况下获得精美和精确,你可以按宽度对字母进行排序,并为每个宽度分配一个浮点值,然后将其相加。这将需要第三个循环来解析单元格值中的每个字符并对每一列的结果求和,可能还需要一个按宽度对字符进行排序的字典,这可能有点矫枉过正,但如果你这样做会很酷。

编辑:实际上似乎有更好的方法来测量文本的视觉大小:我个人更喜欢 matplotlib 技术。

希望我能帮上忙,我的第一个 Whosebug 回答 =)

我遇到了 merged_cells 的问题,autosize 无法正常工作,如果你有同样的问题,你可以解决在 oldsea

的代码中添加下一行
for col in worksheet.columns:
    max_length = 0
    column = col[0].column # Get the column name
    for cell in col:
        if cell.coordinate in worksheet.merged_cells: # not check merge_cells
            continue
        try: # Necessary to avoid error on empty cells
            if len(str(cell.value)) > max_length:
                max_length = len(cell.value)
        except:
            pass
    adjusted_width = (max_length + 2) * 1.2
    worksheet.column_dimensions[column].width = adjusted_width

从 openpyxl 3.0.0 开始的更新版本(使用 .columns 失败 TypeError: expected <class 'str'>:

for column_cells in ws.columns:
    length = max(len(str(cell.value)) for cell in column_cells)
    ws.column_dimensions[column_cells[0].column_letter].width = length
def auto_format_cell_width(ws):
    for letter in range(1,ws.max_column):
        maximum_value = 0
        for cell in ws[get_column_letter(letter)]:
            val_to_check = len(str(cell.value))
            if val_to_check > maximum_value:
               maximum_value = val_to_check
        ws.column_dimensions[get_column_letter(letter)].width = maximum_value + 1

根据上面的评论添加此 post openpyxl - adjust column width size。我成功了,但答案应该是:

from openpyxl.utils import get_column_letter

for col in ws.columns:
    max_length = 0
    column = get_column_letter(col[0].column)  # Get the column name
    # Since Openpyxl 2.6, the column name is  ".column_letter" as .column became the column number (1-based)
    for cell in col:
        try:  # Necessary to avoid error on empty cells
            if len(str(cell.value)) > max_length:
                max_length = len(cell.value)
        except:
            pass
    adjusted_width = (max_length + 2) * 1.2
    ws.column_dimensions[column].width = adjusted_width

我正在使用 openpyxl = "^3.0.5"

使用最新的 openpyxl 你可以使用这个:

from openpyxl.utils import get_column_letter
for idx, col in enumerate(worksheet.columns, 1):
    worksheet.column_dimensions[get_column_letter(idx)].auto_size = True