摘要: fitz模块打开PDF文件报错:RuntimeError(f“Directory '{directory}' does not exist”)RuntimeError: Directory 'static/' does not exist from import fitz解决方案:删除fitzpip 阅读全文
posted @ 2023-03-31 15:56 myrj 阅读(1042) 评论(0) 推荐(0) 编辑
摘要: #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 阅读全文
posted @ 2023-03-31 11:01 myrj 阅读(44) 评论(0) 推荐(0) 编辑
摘要: import ospath="d:\\python37" filetype=".pdf" #遍历包括子文件夹 def get_filename(path,filetype): filetype1=filetype.upper() #print(filetype) name =[] final_nam 阅读全文
posted @ 2023-03-31 10:02 myrj 阅读(311) 评论(0) 推荐(0) 编辑