赞
踩
def get_contract_model(model_path): ''' 获取合同模板的内容 :param model_path: :return: 合同模板每个段落的内容 ''' file=docx.Document(model_path) contract_model=file.paragraphs return contract_model file = docx.Document("./data/采购合同.docx") print("段落数:" + str(len(file.paragraphs)))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。