2021年1月11日

摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- import os import openpyxl from openpyxl.reader.excel import load_workbook from openpyxl.styles.borders i 阅读全文
posted @ 2021-01-11 22:14 冻叉 阅读(120) 评论(0) 推荐(0) 编辑
 
摘要: import comtypes.client import os import win32 import glob print('ss111s') path = r'D:\pythonCode\excel_to_img\report3.pptx' pa = r"D:\pythonCode\excel 阅读全文
posted @ 2021-01-11 22:11 冻叉 阅读(664) 评论(0) 推荐(0) 编辑
 
摘要: import json from pptx import Presentation from pptx.enum.shapes import MSO_SHAPE_TYPE from pptx.util import Cm, Pt,Inches from pptx.enum.text import P 阅读全文
posted @ 2021-01-11 22:08 冻叉 阅读(532) 评论(0) 推荐(0) 编辑
 
摘要: import json from pptx import Presentation from pptx.enum.shapes import MSO_SHAPE_TYPE def ppt_catch_format_text(filename): """ 抓取PPT的内容,按段落返回 其中 filen 阅读全文
posted @ 2021-01-11 22:03 冻叉 阅读(1474) 评论(0) 推荐(0) 编辑
 
摘要: 开发环境配置经验总结 python 运行平台 windowsXP不能运行python3.4以上版本 爬虫类相关模块只能运行的python3.7及以上 python程序通过解压方式安装后,pip需重新安装,原因是pip.exe路径错误。 报错信息:Fatal error in launcher: Un 阅读全文
posted @ 2021-01-11 22:00 冻叉 阅读(104) 评论(0) 推荐(0) 编辑
 
摘要: 转自其他博客 实测可用 # 加载库 import os import pandas as pd from pptx import Presentation from pptx.util import Cm, Pt from pptx.enum.text import PP_ALIGN from pp 阅读全文
posted @ 2021-01-11 21:51 冻叉 阅读(326) 评论(0) 推荐(0) 编辑

2020年3月6日

摘要: 摘抄来源:https://blog.csdn.net/sandalphon4869/article/details/99443949 Turtle motion 海龟动作Move and draw 移动和绘画 forward() | fd() 前进 backward() | bk() | back( 阅读全文
posted @ 2020-03-06 22:16 冻叉 阅读(919) 评论(0) 推荐(0) 编辑