Python 办公自动化
文章平均质量分 84
Yake1965
ok
展开
-
python 办公常用二:批量提取 word 表格中信息
python 办公常用二、批量提取 word 表格中信息原创 2021-06-27 16:15:39 · 2184 阅读 · 0 评论 -
python 办公常用一:从文本文件中提取手机号码
https://blog.csdn.net/A757291228/article/details/117464313python 办公常用一、文件操作1、读取文件写一个函数名为 get_str,传入参数为需要读取到的文件路径,该函数返回读取到的内容,函数代码如下:# 函数名 get_str,传入参数为需要读取到的文件路径,该函数返回读取到的内容。def get_str(path): with open(path, encoding="utf-8") as f: data原创 2021-06-12 13:17:05 · 5049 阅读 · 0 评论