上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 37 下一页
摘要: 带行的str转list str.splitlines([keepends]) 阅读全文
posted @ 2021-07-08 17:57 该显示昵称已被使用了 阅读(84) 评论(0) 推荐(0)
摘要: awk 方法 https://www.cnblogs.com/xudong-bupt/p/3721210.html $ ps -ef | awk 'NR==1{print $1,$2,$8} /java|mysql/{print $1, $2, $8}' UID PID CMD mysql 3494 阅读全文
posted @ 2021-07-07 16:28 该显示昵称已被使用了 阅读(438) 评论(0) 推荐(0)
摘要: 基本 from robot.api import SuiteVisitor class TestStatusChecker(SuiteVisitor): def __init__(self, *args): pass def visit_test(self, test): if 'PASS' in 阅读全文
posted @ 2021-07-02 11:03 该显示昵称已被使用了 阅读(159) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-06-30 14:18 该显示昵称已被使用了 阅读(82) 评论(0) 推荐(0)
摘要: mac发送视频全屏命令 # Mac OS系统:需要先安装pyobjc模块,最后安装pyautogui # pip install pyobjc-core # pip install pyobjc # pip install pyautogui import pyautogui #按键组合alt+ta 阅读全文
posted @ 2021-06-27 15:23 该显示昵称已被使用了 阅读(283) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/apple2016/p/7525845.html cmd rebot -d . output.xml python # coding:utf-8 from robot.api import ExecutionResult from robot impo 阅读全文
posted @ 2021-06-23 11:29 该显示昵称已被使用了 阅读(249) 评论(0) 推荐(0)
摘要: 子类调用父类的方法 # 1 class SSHConnectionCache(ConnectionCache): def __init__(self): ConnectionCache.__init__(self, no_current_msg='No open connection.') # 2 阅读全文
posted @ 2021-06-22 11:06 该显示昵称已被使用了 阅读(50) 评论(0) 推荐(0)
摘要: Python的富比较方法包括: __lt__、小于【<】 __gt__、大于【>】 __le__、小于等于【<=】 __ge__、大于等于【>=】 __eq__、等于【==】 __ne__、不等于【!=】 阅读全文
posted @ 2021-06-21 13:53 该显示昵称已被使用了 阅读(76) 评论(0) 推荐(0)
摘要: 安装 # 安装到node_modules目录 npm i -S bootstrap # 使用 js app.use('/node_modules/', express.static('./node_modules/')) app.use('/public/', express.static('./p 阅读全文
posted @ 2021-06-20 16:22 该显示昵称已被使用了 阅读(65) 评论(0) 推荐(0)
摘要: msg /server:192.168.1.123 * "can you get this msg?" 阅读全文
posted @ 2021-06-20 14:30 该显示昵称已被使用了 阅读(107) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 37 下一页