会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
myrj
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
45
46
47
48
49
50
51
52
53
···
188
下一页
2023年4月2日
c语言 :%*1d %*2d含义
摘要: 1.int a[]={1,2,3}; int *p; 声明整型指针变量 p=a;将数组首地址赋值给指针变量 *p:取当前指针所 指的 下标变量的值 2. c语言中%*1d表示忽略第1个整数 %*3d表示忽略连续3个整数
阅读全文
posted @ 2023-04-02 10:15 myrj
阅读(543)
评论(0)
推荐(0)
2023年3月31日
python 报错 fitz RuntimeError: Directory 'static/' does not exist from import fitz
摘要: 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
阅读(1372)
评论(0)
推荐(0)
C语言 特殊例子及说明
摘要: #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
阅读(75)
评论(0)
推荐(0)
python 遍历指定文件夹指定类型文件
摘要: 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
阅读(368)
评论(0)
推荐(0)
2023年3月30日
c语言:'\48' ASCII码为啥是1080
摘要: #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
阅读(81)
评论(0)
推荐(0)
2023年3月29日
python 强国登录保存cookie,以后自动登录
摘要: 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
阅读(629)
评论(0)
推荐(0)
python 特定位置新建文件报错:PermissionError: [Errno 13] Permission denied: '1.txt'
摘要: 先将指定位置设定为当前目录 import os os.chdir('E:\qi') with open("1.txt", "w") as f: f.write(jsonCookies)
阅读全文
posted @ 2023-03-29 09:03 myrj
阅读(109)
评论(0)
推荐(0)
2023年3月28日
1+X证书各专业标准
摘要: 1+X证书 标准要求
阅读全文
posted @ 2023-03-28 19:56 myrj
阅读(28)
评论(0)
推荐(0)
orbstack
摘要: OrbStack 是 Docker Desktop 的直接替代品,它更快、更轻、更简单且更易于使用。官网orbstack.dev 。目前免费(测试期内),但将来可能会收费
阅读全文
posted @ 2023-03-28 16:16 myrj
阅读(1098)
评论(0)
推荐(0)
志愿活动135
摘要: 1.“文明实践" 参加活动 按钮 找到相应活动,申请参数,然后扫码签到 或: 首页 向下滑动 找到志愿服务 参加活动 按钮 找到相应活动,申请参数,然后扫码签到
阅读全文
posted @ 2023-03-28 11:57 myrj
阅读(21)
评论(0)
推荐(0)
上一页
1
···
45
46
47
48
49
50
51
52
53
···
188
下一页
公告