上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 188 下一页
摘要: 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 阅读(1360) 评论(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 阅读(74) 评论(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 阅读(355) 评论(0) 推荐(0)
摘要: #include <stdio.h> //从C语言语法角度'\48',转义的8进制,48是不合法的8进制数,所以此转义非法 //有警告被理解为宽字符,理解为2个字符,4被转义,8不能被转义只能是字符8,分别是ASCII为4 和56,分别转为16进制:0438=8*16^0+3*16^1+4*16^2 阅读全文
posted @ 2023-03-30 09:21 myrj 阅读(79) 评论(0) 推荐(0)
摘要: from selenium import webdriver import os import time import json def browser_initial(): """" 进行浏览器初始化 """ os.chdir('D:\\') browser = webdriver.Chrome( 阅读全文
posted @ 2023-03-29 09:07 myrj 阅读(623) 评论(0) 推荐(0)
摘要: 先将指定位置设定为当前目录 import os os.chdir('E:\qi') with open("1.txt", "w") as f: f.write(jsonCookies) 阅读全文
posted @ 2023-03-29 09:03 myrj 阅读(98) 评论(0) 推荐(0)
摘要: 1+X证书 标准要求 阅读全文
posted @ 2023-03-28 19:56 myrj 阅读(27) 评论(0) 推荐(0)
摘要: OrbStack 是 Docker Desktop 的直接替代品,它更快、更轻、更简单且更易于使用。官网orbstack.dev 。目前免费(测试期内),但将来可能会收费 ​​​ 阅读全文
posted @ 2023-03-28 16:16 myrj 阅读(1081) 评论(0) 推荐(0)
摘要: 1.“文明实践" 参加活动 按钮 找到相应活动,申请参数,然后扫码签到 或: 首页 向下滑动 找到志愿服务 参加活动 按钮 找到相应活动,申请参数,然后扫码签到 阅读全文
posted @ 2023-03-28 11:57 myrj 阅读(20) 评论(0) 推荐(0)
摘要: pandas 保存.dta文件时报错: UnicodeEncodeError: 'latin-1' codec can't encode characters in position 0-2: ordinal not in range(256) import pandas as pd df = pd 阅读全文
posted @ 2023-03-27 10:34 myrj 阅读(479) 评论(0) 推荐(0)
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 188 下一页