上一页 1 ··· 76 77 78 79 80 81 82 83 84 ··· 181 下一页
摘要: import signal def tt(signum, frame): print('You choose to stop me.') exit() signal.signal(signal.SIGINT, tt) signal.signal(signal.SIGTERM, tt) while 1 阅读全文
posted @ 2022-12-27 09:46 myrj 阅读(64) 评论(0) 推荐(0) 编辑
摘要: from wxauto import WeChat import pywinauto,time,sys,re,random # 获取当前微信客户端 wx = WeChat() # 获取会话列表 wx.GetSessionList() # 输出当前聊天窗口聊天消息 ##msgs = wx.GetAll 阅读全文
posted @ 2022-12-26 16:33 myrj 阅读(371) 评论(0) 推荐(0) 编辑
摘要: re.error: unterminated character set at position 12 这很可能是因为元字符“{}、[]、()”。有没有什么正则表达式可以让finditer忽略它? 您必须转义正则表达式中的特殊字符: slice = "this characters \{}, \[] 阅读全文
posted @ 2022-12-26 13:33 myrj 阅读(3474) 评论(0) 推荐(0) 编辑
摘要: .ts文件转.mp3: ffmpeg -i 三生石下.ts -vn -c:a libmp3lame -q:a 0 1.1.mp3 批处理: for %i in (1*.ts) do ffmpeg -i %i -vn -c:a libmp3lame -q:a 0 %i.mp3 ffmpeg -i sr 阅读全文
posted @ 2022-12-26 11:50 myrj 阅读(97) 评论(0) 推荐(0) 编辑
摘要: mysql出错提示“BLOB/TEXT column used in key specification without a key length”解决办法 Mysql数据库对于BLOB/TEXT这样类型的数据结构只能索引前N个字符。所以这样的数据类型不能作为主键,也不能是UNIQUE的。所以要换成 阅读全文
posted @ 2022-12-25 07:44 myrj 阅读(2333) 评论(0) 推荐(0) 编辑
摘要: 检测文件大小: os.path.getsize(filepath) 阅读全文
posted @ 2022-12-23 16:02 myrj 阅读(7) 评论(0) 推荐(0) 编辑
摘要: >>> aa="abcdde">>> aa.zfill(10)'0000abcdde'>>> aa.zfill(2)'abcdde'>>> aa.zfill(6)'abcdde'>>> aa.rjust(10,"*")'****abcdde'>>> ab="-100.24">>> ab.zfill( 阅读全文
posted @ 2022-12-23 15:53 myrj 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 视频网页相关源代码 url显示:blob:http://www.99xxxxx.com/559dff7f-67f0-4670-9bdb-61c701cf743a大部分网页视频为.m3u8F12检查,搜索.m3u8m3u8又是啥? m3u8格式编码是utf-8格式的m3u文件,m3u文件是记录了一个按 阅读全文
posted @ 2022-12-23 09:02 myrj 阅读(1508) 评论(0) 推荐(0) 编辑
摘要: ##for 临时变量 in 序列: ## 重复执行的代码 ## ...... ##else: ## 循环正常结束后要执行的代码 #所谓else指的是循环正常结束后要执行的代码,即如果是bresk终止循环的情况。 #else下方缩进的代码将不执行。 #Break是终止循环,一旦遇到break就代表循环 阅读全文
posted @ 2022-12-12 06:44 myrj 阅读(76) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int gygb(int m,int n,int x) { int a; if(x==0) { for(a=m;a>=1;a--) if(m%a==0 && n%a==0) return a; return a; } else { for(a=m;a<m*n;a 阅读全文
posted @ 2022-12-11 20:31 myrj 阅读(159) 评论(0) 推荐(0) 编辑
上一页 1 ··· 76 77 78 79 80 81 82 83 84 ··· 181 下一页