上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页

2021年7月7日

ascci 码表

摘要: ![](https://img2020.cnblogs.com/blog/595992/202107/595992-20210707164548418-1069743789.png) 阅读全文

posted @ 2021-07-07 16:46 平凡之测 阅读(207) 评论(0) 推荐(0) 编辑

jmeter 压测tcp协议

摘要: https://www.cnblogs.com/TestSu/p/10552239.html 阅读全文

posted @ 2021-07-07 14:59 平凡之测 阅读(74) 评论(0) 推荐(0) 编辑

excel怎么根据数值做进度条

摘要: 开始->条件格式->数据条 阅读全文

posted @ 2021-07-07 10:41 平凡之测 阅读(328) 评论(0) 推荐(0) 编辑

2021年7月6日

python excel 数据整理:如何删除重复的记录

摘要: data = frame.drop_duplicates(subset=’’, keep='first', inplace=’’) drop_duplicates用法:subset=‘需要去重复的列名’, keep=‘遇到重复的时保留第一个还是保留最后一个’, inplace=‘去除重复项,还是保留 阅读全文

posted @ 2021-07-06 17:00 平凡之测 阅读(754) 评论(0) 推荐(0) 编辑

python excel 打开表格:表格名不知道应该怎么打开

摘要: 取所有表格名的倒数第一个就是操作的表格 import pandas as pd xl = pd.ExcelFile(xlPath) names = xl.sheet_names df = xl.parse(names[-1], skiprows=2) 阅读全文

posted @ 2021-07-06 16:33 平凡之测 阅读(115) 评论(0) 推荐(0) 编辑

web 测试 F12定位bug

摘要: https://blog.csdn.net/weixin_41204880/article/details/113553392 阅读全文

posted @ 2021-07-06 15:57 平凡之测 阅读(37) 评论(0) 推荐(0) 编辑

python excel 读取:如何读取符合多个条件的记录【出差、外出、调休、年假】

摘要: if 语句结合or 实现:读取所有出差、外出、调休、年假的记录 if '出差' in str(c_cell) or '外出' in str(c_cell) or'调休' in str(c_cell) or '年假' in str(c_cell) : sheet_data[keys[i]] = c_c 阅读全文

posted @ 2021-07-06 15:33 平凡之测 阅读(135) 评论(0) 推荐(0) 编辑

2021年7月5日

gitee如何删除仓库

摘要: 进入仓库的管理页面点击删除 阅读全文

posted @ 2021-07-05 14:39 平凡之测 阅读(3271) 评论(0) 推荐(0) 编辑

postman 提示Http Status 400 -Bad Request

摘要: Http Status 400 -Bad Request 将headers下面的选项全部勾选 新版postman自带的内容 阅读全文

posted @ 2021-07-05 14:02 平凡之测 阅读(1385) 评论(1) 推荐(0) 编辑

postman 如何比较两台电脑的脚本是否一样

摘要: ![image-20210705115336063](测试文档.assets/image-20210705115336063.png) 阅读全文

posted @ 2021-07-05 11:57 平凡之测 阅读(24) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页

导航