Python批量设置多个Excel文件页眉页脚的源码

import os import openpyxl from openpyxl.worksheet.header_footer import _HeaderFooterPart xlsxFiles = (fn for fn in os.listdir('.') if fn.endswith('.xlsx')) for xlsxFile in xlsxFiles:     wb = openpyxl
相关文章
相关标签/搜索