复制一个 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
标签:__,load,openpyxl,另存为,Python,excel
From: https://www.cnblogs.com/guanchaoguo/p/17843415.html