上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: 地址 open打开文件教程 https://wenku.csdn.net/answer/5qh3qi2h61#:~:text=python with open as 创建文件,1 'r':只读模式,只能读取文件内容。 2 'w':写入模式,如果文件存在就覆盖文件内容,如果文件不存在就创建文件。 3 阅读全文
posted @ 2024-01-12 11:28 赏金猎人小熊 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 点击查看代码 ExtendValue = { "area": "1", "info": "{\"year\": 2014, \"a\": 12, \"b\": 3, \"c\":5}", "trip_country": "CN" } 在按照字典访问的时候,报错。TypeError: string i 阅读全文
posted @ 2024-01-12 11:10 赏金猎人小熊 阅读(1738) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/michaelwoshi/article/details/114173158 电脑端安装fiddler,设置端口监听(xx.xx.xx.xx:8888),设置系统信任fiddler软件证书 2 手机和电脑在同一局域网,手机关闭4G/5G流量 手机设置网络代 阅读全文
posted @ 2024-01-06 09:41 赏金猎人小熊 阅读(11) 评论(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 赏金猎人小熊 阅读(582) 评论(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 赏金猎人小熊 阅读(1778) 评论(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 赏金猎人小熊 阅读(127) 评论(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 赏金猎人小熊 阅读(44) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/2494968/202312/2494968-20231227093139976-102330481.png) 阅读全文
posted @ 2023-12-27 09:32 赏金猎人小熊 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 一、查询重复记录 例:查询员工表里出现重复姓名的记录 思路: 1、查看重复记录,首先要使用分组函数(group by),再用聚合函数中的中的计数函数count(name)给姓名列计数,且使用group by 后不可使用* 2、查关键字:姓名,以姓名进行分组,看潜在条件:重复,也就是count(nam 阅读全文
posted @ 2023-12-26 00:45 赏金猎人小熊 阅读(130) 评论(0) 推荐(0) 编辑
摘要: ##索引的一般方式 一个完整的切片是包含三个参数和两个冒号" : " ,用于分隔三个参数(start_index、end_index、step)。当只有一个“:”时,默认第三个参数step=1;当一个“:”也没有时,start_index=end_index,表示切取start_index指定的那个 阅读全文
posted @ 2023-06-06 15:03 赏金猎人小熊 阅读(369) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页