摘要: 安装docx模块 pip3 install python-docx 读取word整文 from docx import Document doc=Document("./a.docx") for p in doc.paragraphs: print(p.text) 简单实例1 # word_1.py 阅读全文
posted @ 2020-12-28 13:44 豆浆D 阅读(1562) 评论(0) 推荐(0) 编辑
摘要: 使用 time 模块的 strftime 方法来格式化日期 time.strftime(format[, t]) 实例 import time # 格式化成2016-03-20 11:45:39形式 time1 = time.strftime("%Y-%m-%d %H:%M:%S", time.lo 阅读全文
posted @ 2020-12-28 11:18 豆浆D 阅读(2860) 评论(0) 推荐(0) 编辑