PDF中提取图片

  1. 安装库
C:\Users\*****>pip install pymupdf
Collecting pymupdf
  Downloading PyMuPDF-1.17.5-cp38-cp38-win_amd64.whl (5.1 MB)
     |████████████████████████████████| 5.1 MB 273 kB/s
Installing collected packages: pymupdf
Successfully installed pymupdf-1.17.5

C:\Users\*****>
  1. python 脚本
import fitz
import time
import re
import os

def pdf2pic(path, pic_path …
点击查看更多…

Python 复制文件到新的路径

import shutil

path = 'd:\11111\test.py'

newpath = 'd:\2222\test.py'

shutil.copy(path, newpath)

点击查看更多…

python 列出文件夹下所有的文件以及文件夹名

import os
path = 'D:\******……' #定义路径

folders = os.listdir(path)
for folder in folders:
    print(folder)
点击查看更多…

python3 print格式化输出---------"%s 和 % d"

  1. 打印字符串

    >>> string="hello"
    >>> print("string=%s"%(string))
    输出: string=hello
    

2.打印整数

>>> print ("He is %d years old"%(25))
输出: He is 25 years old

3.打印浮点数

>>>print ("His height is %f m"%(1.83)) 输出 …
点击查看更多…