上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 181 下一页
摘要: 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 阅读(310) 评论(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 阅读(33) 评论(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 阅读(550) 评论(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 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 1+X证书 标准要求 阅读全文
posted @ 2023-03-28 19:56 myrj 阅读(20) 评论(0) 推荐(0) 编辑
摘要: OrbStack 是 Docker Desktop 的直接替代品,它更快、更轻、更简单且更易于使用。官网orbstack.dev 。目前免费(测试期内),但将来可能会收费 ​​​ 阅读全文
posted @ 2023-03-28 16:16 myrj 阅读(829) 评论(0) 推荐(0) 编辑
摘要: 1.“文明实践" 参加活动 按钮 找到相应活动,申请参数,然后扫码签到 或: 首页 向下滑动 找到志愿服务 参加活动 按钮 找到相应活动,申请参数,然后扫码签到 阅读全文
posted @ 2023-03-28 11:57 myrj 阅读(13) 评论(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 阅读(349) 评论(0) 推荐(0) 编辑
摘要: GCC编译C源程序时出现:错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token,通常是因为在函数声明(包括包含的头文件中的函数声明)后面忘记了分号“;”。仔细检查一遍各个函数声明,把遗漏的分号“;”加上去就可以解决此 阅读全文
posted @ 2023-03-27 10:10 myrj 阅读(3598) 评论(0) 推荐(0) 编辑
摘要: #include <windows.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <conio.h> #include <stdbool.h> /* ¹ÜµÀ¾ä±úµÄ¶¨Òå */ HANDLE hStd 阅读全文
posted @ 2023-03-26 17:42 myrj 阅读(60) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 181 下一页