上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页
摘要: https://blog.csdn.net/michaelwoshi/article/details/114173158 电脑端安装fiddler,设置端口监听(xx.xx.xx.xx:8888),设置系统信任fiddler软件证书 2 手机和电脑在同一局域网,手机关闭4G/5G流量 手机设置网络代 阅读全文
posted @ 2024-01-06 09:41 赏金猎人小熊 阅读(21) 评论(0) 推荐(0)
摘要: 5.1报错信息 报错1:OSError: File contains no valid workbook part 报错2:InvalidFileException: openpyxl does not support the old .xls file format, please use xlr 阅读全文
posted @ 2024-01-05 19:25 赏金猎人小熊 阅读(932) 评论(0) 推荐(0)
摘要: requests获取响应头的set-Cookie 点击查看代码 import requests url="http://www.exampl.com" res=requests.get(url) cookie=res.headers.get("set-cookie") print(cookies) 阅读全文
posted @ 2024-01-04 10:17 赏金猎人小熊 阅读(2428) 评论(0) 推荐(0)
摘要: selenium 3 与 4 的区别 selenium 3 与 4 ,元素定位表达不同,本质一样 selenium 3 find_elemnt_by_xxx selenium 4 find_elemnt(By.xxx,"") selenium 4不支持下划线 阅读全文
posted @ 2024-01-02 15:26 赏金猎人小熊 阅读(150) 评论(0) 推荐(0)
摘要: python数据核对思路: 点击查看代码 def auto check(io_form,io_form2,io_to): import panda as pd df_1=pd.read_excel(io_form) df_2=pd.read_excel(io_form2) result=pd.mer 阅读全文
posted @ 2023-12-27 09:43 赏金猎人小熊 阅读(89) 评论(0) 推荐(0)
摘要: ![](https://img2023.cnblogs.com/blog/2494968/202312/2494968-20231227093139976-102330481.png) 阅读全文
posted @ 2023-12-27 09:32 赏金猎人小熊 阅读(38) 评论(0) 推荐(0)
摘要: 一、查询重复记录 例:查询员工表里出现重复姓名的记录 思路: 1、查看重复记录,首先要使用分组函数(group by),再用聚合函数中的中的计数函数count(name)给姓名列计数,且使用group by 后不可使用* 2、查关键字:姓名,以姓名进行分组,看潜在条件:重复,也就是count(nam 阅读全文
posted @ 2023-12-26 00:45 赏金猎人小熊 阅读(219) 评论(0) 推荐(0)
摘要: ##索引的一般方式 一个完整的切片是包含三个参数和两个冒号" : " ,用于分隔三个参数(start_index、end_index、step)。当只有一个“:”时,默认第三个参数step=1;当一个“:”也没有时,start_index=end_index,表示切取start_index指定的那个 阅读全文
posted @ 2023-06-06 15:03 赏金猎人小熊 阅读(414) 评论(0) 推荐(0)
摘要: 在 python3 中,reversed 函数也能够逆转列表。 其实,在 python2.7 中就存在内置函数 reverse 可以用来翻转列表,不过在 python3 中已经删去该函数。 相比于 reverse 函数只能反转列表,reversed 函数则可以翻转多种序列,包括tuple、list、 阅读全文
posted @ 2023-06-05 18:09 赏金猎人小熊 阅读(144) 评论(0) 推荐(0)
摘要: ###from openpyxl.styles.colors import * 的失败调用问题,使用openpyxl 模块调用 进行颜色分配时,无法调用函数colors openpyxl进行版本降低 2.6.1后,正常使用 ![](https://img2023.cnblogs.com/blog/2 阅读全文
posted @ 2023-05-25 23:32 赏金猎人小熊 阅读(37) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页