摘要: 混合引用 以九九乘法表为例: 显示公式: 解析: B$1*$A2 B:第二列,相对引用 $1 :第一行,绝对引用。 B$1: 第二列第一行单元格里的内容,C$1: 第三列第一行单元格里的内容, D$1: 第四列第一行单元格里的内容..... $A:第一列,绝对引用 2:第二行,相对引用。 $A2:第 阅读全文
posted @ 2023-03-28 17:47 薏米* 阅读(137) 评论(0) 推荐(0) 编辑
摘要: test_app python appium搭建app自动化测试环境 appium 实现原理(android) (1)Client端可以是多种语言编写,它类似于selenium webdriver,封装了selenium的Api,并添加了部分的新的Api,我们可以依据这些Api编辑自动化脚本。(2) 阅读全文
posted @ 2021-11-16 14:53 薏米* 阅读(118) 评论(0) 推荐(0) 编辑
摘要: Issue1: email address ***** is not registered in your account, and you lack 'forge committer' permission Issue2: The result of 'git log' display two n 阅读全文
posted @ 2020-03-21 10:42 薏米* 阅读(2393) 评论(0) 推荐(0) 编辑
摘要: 执行 adb shell pm list users 可以看到 Users: UserInfo{0:name:13} running 其中 0 表示 user Id, 这条记录表示当前正在运行的帐号的 user id 是0,用户名是 name。 原文链接:https://blog.csdn.net/ 阅读全文
posted @ 2020-01-14 14:45 薏米* 阅读(5328) 评论(0) 推荐(0) 编辑
摘要: 在git bash中,运行下列命令: git config --global core.longpaths true --global是该参数的使用范围,如果只对本版本库设置该参数,只要在上述命令中去掉--global即可。 阅读全文
posted @ 2019-12-17 13:14 薏米* 阅读(183) 评论(0) 推荐(0) 编辑
摘要: Create a repository method 1: create a new local repository git init (project name) method 2: download fron an existing repository git clone my_url Ob 阅读全文
posted @ 2019-11-27 10:12 薏米* 阅读(182) 评论(0) 推荐(0) 编辑
摘要: class A: # 静态字段和classmethod构成单例模式 __v = None @classmethod def get_instance(cls): if cls.__v: return cls.__v else: cls.__v = A() return cls.__vobject1 阅读全文
posted @ 2019-10-16 22:09 薏米* 阅读(154) 评论(0) 推荐(0) 编辑
摘要: # 二元字符:. ^ $ * + ? { } [ ] | ( ) \ # 模糊匹配 import re# . 通配符print(re.findall("w..l","wedfldsafwlll"))# ['wlll']# ^ 首字符print(re.findall("^h....", "heirkd 阅读全文
posted @ 2019-10-16 08:21 薏米* 阅读(742) 评论(0) 推荐(0) 编辑
摘要: 1 Web应用 https://www.cnblogs.com/yuanchenqi/articles/8869302.html2 http协议 https://www.cnblogs.com/yuanchenqi/articles/8875623.html3 web框架 https://www.c 阅读全文
posted @ 2019-10-06 17:39 薏米* 阅读(423) 评论(0) 推荐(0) 编辑
摘要: with是从Python2.5引入的一个新的语法,它是一种上下文管理协议,目的在于从流程图中把 try,except 和finally 关键字和 资源分配释放相关代码统统去掉,简化try….except….finlally的处理流程。 with通过__enter__方法初始化,然后在__exit__ 阅读全文
posted @ 2019-10-03 11:30 薏米* 阅读(315) 评论(0) 推荐(0) 编辑