上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页

2021年10月18日

摘要: PART1: 三、查找 1、从某一行向上/下找到第一个不为空的行 intRowPntEnd = ActiveSheet.Cells(intRowPntStart, intColPnt).End(xlDown).Row m = Range("e65536").End(xlUp).Row 四、定位 2、 阅读全文
posted @ 2021-10-18 11:58 qev211 阅读(559) 评论(0) 推荐(0) 编辑
 
摘要: 电脑连接上一个手机或多个手机, 确保adb已经添加到环境变量中,执行下面的命令会自动安装本库所需要的设备端程序:uiautomator-server 、atx-agent、openstf/minicap、openstf/minitouch https://gitee.com/ran_yong/uia 阅读全文
posted @ 2021-10-18 11:41 qev211 阅读(138) 评论(0) 推荐(0) 编辑

2021年9月30日

摘要: 图片处理相关 # opencvy pip install opencv-python # opencv主包,基本功能有GUI支持 pip install opencv-contrib-python # opencv社区贡献版,包含主包以外的高级功能,有GUI支持 # 带-headless的是不带GU 阅读全文
posted @ 2021-09-30 14:50 qev211 阅读(47) 评论(0) 推荐(0) 编辑
 
摘要: 删除多个文件夹下的同名文件 @echo on rem 删除本目录及其子目录下的所有aaa.txt del /s /q F31.exe exit 将一个文件复制到多个文件夹 @echo off rem 将F31.exe 复制到所有本目录的所有文件夹下 for /f %%i in ('dir /ad / 阅读全文
posted @ 2021-09-30 11:04 qev211 阅读(31) 评论(0) 推荐(0) 编辑

2021年9月22日

摘要: 对列表中元素统一操作 # 将列表中所有元素统一加入前缀,此处为路径作为前缀 l = ['a', 'b', 'c','c', 'd'] now = [os.path.join('haha',f'{x1}') for x1 in l] 一、查看列表中重复元素 from collections impor 阅读全文
posted @ 2021-09-22 15:47 qev211 阅读(69) 评论(0) 推荐(0) 编辑
 
摘要: 自动加入头文件 # _*_ coding: utf-8 _*_ # @Time : ${DATE} ${TIME} # @Author : xiechunhui # @Version:V 0.1 # @File : ${NAME}.py # @desc : 函数自动注释 格式化工具black $Py 阅读全文
posted @ 2021-09-22 11:15 qev211 阅读(52) 评论(0) 推荐(0) 编辑

2021年9月15日

摘要: 简单常用 isinstance 判断一个对象是否是一个已知的类型 arg=123 isinstance(arg, int) #输出True isinstance(arg, str) #输出False isdigit str = "123456"; print (str.isdigit()) >>> 阅读全文
posted @ 2021-09-15 16:22 qev211 阅读(213) 评论(0) 推荐(0) 编辑
 
摘要: 正则表达式 定义 正则表达式(Regular Expression)是一种文本模式,包括普通字符(例如,a 到 z 之间的字母)和特殊字符(称为"元字符")。 * 匹配前面的子表达式零次或多次。要匹配 * 字符,请使用 \*。 + 匹配前面的子表达式一次或多次。要匹配 + 字符,请使用 \+。 . 阅读全文
posted @ 2021-09-15 16:20 qev211 阅读(34) 评论(0) 推荐(0) 编辑
 
摘要: sorted sorted()函数对所有可迭代对象进行操作,返回的是一个新列表;列表的list方法只对列表有效,且不生成新的列表。 # 对成绩升序排列,名字降序排列 d1 = [{'name':'alice', 'score':38}, {'name':'bob', 'score':18}, {'n 阅读全文
posted @ 2021-09-15 16:18 qev211 阅读(47) 评论(0) 推荐(0) 编辑

2021年9月10日

摘要: Crontab命令 命令选项: crontab -l : 显示某个用户的任务计划 crontab -e :编辑某个用户的任务计划 cron服务 service cron start/stop/restart/status service cron reload:重新加载配置 记住几个特殊符号的含义: 阅读全文
posted @ 2021-09-10 10:55 qev211 阅读(455) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页