Python 另存为 excel
复制一个 excel
- 注意 openpyxl-3.0.10
from openpyxl.reader.excel import load_workbook
if __name__ == '__main__':
wb = load_workbook('source.xlsx')
wb.save('样式表.xlsx')
其他版本异常错误
openpyxl: Value must be either numerical or a string containing a wildcard
本文来自博客园,作者:vx_guanchaoguo0,转载请注明原文链接:https://www.cnblogs.com/guanchaoguo/p/17843415.html