gpt4 book ai didi

python - 使用 Python 自动调整 Excel 工作表的所有列

转载 作者:太空宇宙 更新时间:2023-11-03 10:47:23 25 4
gpt4 key购买 nike

有谁知道任何 Python --> Excel 库包含一种方法,可以在给定 Excel 文件名的情况下自动调整工作表中的所有列?

最佳答案

您可以使用 pywin32图书馆:

from win32com.client import Dispatch

excel = Dispatch('Excel.Application')
wb = excel.Workbooks.Open("D:\\output.xlsx")

#Activate second sheet
excel.Worksheets(2).Activate()

#Autofit column in active sheet
excel.ActiveSheet.Columns.AutoFit()

#Save changes in a new file
wb.SaveAs("D:\\output_fit.xlsx")

#Or simply save changes in a current file
#wb.Save()

wb.Close()

关于python - 使用 Python 自动调整 Excel 工作表的所有列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24023518/

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