摘要: # 创建字典的几种方式: # 使用元素创建: dict01 = {"qtx":1000,"wk":500,"bj":2000} print(dic) # 使用其他容器: dict01 = [("唐僧",100),["八戒",500],"沙僧"]dict02 = dict[dict01] print( 阅读全文
posted @ 2020-05-17 23:08 无所不能的小超银 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 列表创建:# 方式一:(常用)s = [1, 2, '小超银']print(s) # [1, 2, '小超银']# 方式二:(不常用)s1 = list() # 空列表l1 = list('123')print(l1) # ['1', '2', '3']# 方式三:列表推导式l1 = [i for 阅读全文
posted @ 2020-05-17 20:31 无所不能的小超银 阅读(230) 评论(0) 推荐(0) 编辑
摘要: # upper lower#不会对原字符串进行任何操作,都是产生一个新的字符串 s = 'XiaoChaoYin's1 = s.upper()print(s1) # XIAOCHAOYINs2 = s.lower()print(s2) # xiaochaoyin #startswith 判断是否以. 阅读全文
posted @ 2020-05-17 19:53 无所不能的小超银 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 要抓手机app的包,手机配置好代理后,能连接到Charles,但是手机无法上网。 原因:Charles开启了White list 解决方式:关闭White List;Tools-->White List 实现charles抓取手机访问(https)的数据包,主要有以下几个步骤 1、mac端安装ssl 阅读全文
posted @ 2020-04-15 13:19 无所不能的小超银 阅读(11668) 评论(0) 推荐(1) 编辑
摘要: APP测试的时候,建议让开发打好包APK和IPA安装包,测试人员自己安装应用,进行测试。在测试过程中需要注意的测试点如下: 1.安装和卸载 ●应用是否可以在IOS不同系统版本或android不同系统版本上安装(有的系统版本过低,应用不能适配) ●软件安装后是否可以正常运行,安装后的文件夹及文件是否可 阅读全文
posted @ 2018-06-29 10:33 无所不能的小超银 阅读(146) 评论(0) 推荐(0) 编辑
摘要: ps aux|grep weixin|grep -v grep|grep -v kafka|grep -v fileserver|grep -v jenkins|awk '{print $2}'|xargs kill -9 #ps aux|grep api|grep -v grep|grep -v 阅读全文
posted @ 2018-06-29 10:32 无所不能的小超银 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 在/usr/local/下建立放mysql的文件夹 mkdir mysql 下载 mysql安装包 wget http://mirrors.sohu.com/mysql/MySQL-5.6/MySQL-5.6.28-1.el6.x86_64.rpm-bundle.tar 解压该安装包 tar xvf 阅读全文
posted @ 2016-03-04 10:19 无所不能的小超银 阅读(118) 评论(0) 推荐(0) 编辑