04 2023 档案
python将pdf转为txt
摘要:# encoding=utf8 #-*-coding:utf-8 -*- #pip install pypdf2 -i https://pypi.tuna.tsinghua.edu.cn/simple import PyPDF2 from io import StringIO content_all
阅读全文
python 画思维导图
摘要:1.安装Graphviz 要安装Graphviz,可以按照以下步骤操作: 前往 Graphviz 官网 前往 Graphviz 官网(https://graphviz.org/)。https://graphviz.org/download/ 下载适合你操作系统的安装文件 在官网首页中,你可以看到 W
阅读全文
python画甘特图
摘要:# -*- coding:utf-8 -*- # pip install plotly -i https://pypi.tuna.tsinghua.edu.cn/simple import plotly as py import plotly.figure_factory as ff pyplt =
阅读全文
自媒体网址
摘要:1.33搜帧 : 找无版权的可用素材视频 ,网址 https://fse.agilestudio.cn/ 2.http://www.copyai.cn/loginindex :copydone AI官网 3.https://heyfriday.cn/article/dashboard : 4.htt
阅读全文
python获取文本中网址并判断是否可以正常访问
摘要:# encoding=utf8 #-*-coding:utf-8 -*- import re import requests # 打开文本文件并读取内容 with open('input.txt', 'r',encoding="utf-8") as f: content = f.read() # 使
阅读全文
python word 转pdf
摘要:# encoding=utf8 #-*-coding:utf-8 -*- # pip install docx2pdf -i https://pypi.tuna.tsinghua.edu.cn/simple from docx2pdf import convert # 将单个Word文档转换为PDF
阅读全文
python合并多个PPT文件到 文档\演示文稿1.pptx
摘要:# encoding=utf8 #-*-coding:utf-8 -*- #pip install python-pptx -i https://pypi.tuna.tsinghua.edu.cn/simple #pip install python-docx -i https://pypi.tun
阅读全文
python 合并多个PPT
摘要:# encoding=utf8 #-*-coding:utf-8 -*- # pip install aspose.slides -i https://pypi.tuna.tsinghua.edu.cn/simple import aspose.slides as slides from pptx
阅读全文
python 复制幻灯片并替换相应文字作为新的幻灯片_循环替换
摘要:# encoding=utf8 #-*-coding:utf-8 -*- #pip install python-pptx -i https://pypi.tuna.tsinghua.edu.cn/simple #pip install python-docx -i https://pypi.tun
阅读全文