学习笔记:将excel另存为加时间戳的文件

语言:Python 3.7

学习时间:2天

适用工作:将excel另存为

参考文档:https://pypi.org/project/xlutils/

# -*- coding: utf-8 -*-
"""
Created on Fri Aug  9 17:18:33 2019

@author: zbliuA
"""
import xlrd
import time
from xlutils.copy import copy

file_path = ('F:\\Documents\\1生产计划\\1生产计划\\1排产\\201908\\最新发货计划.xlsx')

#读取文件
read_file = xlrd.open_workbook(file_path)

#参数注释:
#file_path:文件路径,包含文件的全名称
#formatting_info=True:保留Excel的原格式

#将文件复制到内存
write_data = copy(read_file)

#读取复制后文件的sheet1
ws = write_data.get_sheet(0)
    
# 新工作簿writer覆盖原工作簿work_book
write_data.save(r"F:\Documents\1生产计划\1生产计划\1排产\201908"+"\\"+time.strftime("%Y-%m-%d") + "发货计划.xls")

你可能感兴趣的:(学习笔记:将excel另存为加时间戳的文件)