上一页 1 ··· 90 91 92 93 94 95 96 97 98 ··· 180 下一页
摘要: 打开软件所在位置类似名称base.vbox,用记事本打开查看hostport <Forwarding name="port0" proto="1" hostip="127.0.0.1" hostport="60001" guestport="18013"/> <Forwarding name="po 阅读全文
posted @ 2022-08-19 16:22 myrj 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 一、JSON的解析方法有两种:eval()和JSON.parse() var jsonstr='{"str1":"Hello,", "str2":"world!"}'; var evalJson=eval('('+jsonstr+')'); var jsonParseJson=JSON.parse( 阅读全文
posted @ 2022-08-19 15:51 myrj 阅读(805) 评论(0) 推荐(0) 编辑
摘要: def joba(): schedule.every().day.at("08:40").do(job) while 1: schedule.run_pending() #time.sleep(1) 写成schedule.every().day.at("8:40").do(job)会报错 搜索 复制 阅读全文
posted @ 2022-08-16 20:39 myrj 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 火龙果不能与牛奶 海鲜 山楂同食 搜索 复制 阅读全文
posted @ 2022-08-12 18:42 myrj 阅读(15) 评论(0) 推荐(0) 编辑
摘要: lena=len(agents) tt0=tt1=tt2=tt3=tt4=tt5=tt6=tt7=tt8=tt9=tt10=tt11=tt12=tt13=0 tta0=tta1=tta2=tta3=tta4=tta5=tta6=tta7=tta8=tta9=tta10=tta11=tta12=tta 阅读全文
posted @ 2022-08-11 15:36 myrj 阅读(247) 评论(0) 推荐(0) 编辑
摘要: E:\ADB\0607u>adb -s c748555a7d23 shellcactus:/ $ wm sizewm sizePhysical size: 720x1440cactus:/ $ 搜索 复制 阅读全文
posted @ 2022-08-09 22:15 myrj 阅读(46) 评论(0) 推荐(0) 编辑
摘要: import re,sys,time,json,requests,datetime aaa='''accept: application/json, text/plain, */* origin: https://lyzs.zuanqianyi.com x-requested-with: com.k 阅读全文
posted @ 2022-08-08 11:46 myrj 阅读(261) 评论(0) 推荐(0) 编辑
摘要: ImportError: cannot import name ‘Protocol‘ from ‘typing‘解决方案pip install typingpip install typing_extensionseasy_install typing_extensionsfrom typing_e 阅读全文
posted @ 2022-08-07 20:16 myrj 阅读(2319) 评论(0) 推荐(0) 编辑
摘要: 把二进制,八进制,十六进制转化为数字,python也提供了内置函数,非常方便,用法分别如下: num1 = int(binaryString,2) num2 = int(octonaryString,8) num3 = int(hexadecimalString,16) 同时,python内置函数还 阅读全文
posted @ 2022-08-07 20:08 myrj 阅读(112) 评论(0) 推荐(0) 编辑
摘要: // 十六进制颜色值的正则表达式var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/ 转义字符 '\\s':匹配空格'\\n':匹配换行符'\\f':匹配换页符'\\r':匹配回车符'\\t':匹配制表符'\\v':匹配垂直制表符 注:在使用split('\\ 阅读全文
posted @ 2022-08-03 11:08 myrj 阅读(21) 评论(0) 推荐(0) 编辑
上一页 1 ··· 90 91 92 93 94 95 96 97 98 ··· 180 下一页