09 2022 档案
摘要:基于百度的paddleOCR https://zhuanlan.zhihu.com/p/521042883 github.com/hiroi-sora/Umi-OCR
阅读全文
摘要:1.设置开机启动项 win r shell:startup (即C:\Users\79481\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup) 放入exe或快捷方式即可 任务管理器 启动项 2.win10下右键菜单添加打开管
阅读全文
摘要:AHK中文文档 https://wyagd001.github.io/zh-cn/docs/Hotstrings.htm 热字串 AHK中文文档 https://wyagd001.github.io/zh-cn/docs/Hotstrings.htm ; 例如 :*si:wqz::wwwqqqzzz
阅读全文
摘要:win10下右键菜单添加打开cmd: https://blog.csdn.net/zengxingyuluo/article/details/106887533
阅读全文
摘要:import pyperclip pyperclip.copy(text) 把text字符串中的字符复制到剪切板 text = pyperclip.paste() 把剪切板上的字符串复制到text
阅读全文
摘要:# 1 print('11122223344444'.lstrip('123')) #44444 ,匹配时不是按照整个字符串匹配的,而是一个个匹配的。 # 2 'xxxx'.replace('xx','x*x') #x*xx*x #解决方法 while cmd!=cmd.replace('xx','
阅读全文
摘要:reduce 对可迭代对象进行累积操作 https://www.runoob.com/python/python-func-reduce.html 注意:Python3.x reduce() 已经被移到 functools 模块里,如果我们要使用,需要引入 functools 模块来调用 reduc
阅读全文