摘要:
fitz模块打开PDF文件报错:RuntimeError(f“Directory '{directory}' does not exist”)RuntimeError: Directory 'static/' does not exist from import fitz解决方案:删除fitzpip 阅读全文
摘要:
#include <stdio.h> main() { char c; c=0345; printf("%d\n",c); } 16进制:每个16进制转成4位2进制,分组计算 8进制345: 转2进制,每个8进制转成3位2进制 2进制:011 100 101 229: 128 64 32 16 8 阅读全文
摘要:
import ospath="d:\\python37" filetype=".pdf" #遍历包括子文件夹 def get_filename(path,filetype): filetype1=filetype.upper() #print(filetype) name =[] final_nam 阅读全文