12 2024 档案

摘要:import pdfplumber with pdfplumber.open('test.pdf') as pdf: tables = [] for page in pdf.pages: extracted_tables = page.extract_tables() tables.extend(e 阅读全文
posted @ 2024-12-15 10:59 wstong 阅读(54) 评论(0) 推荐(0) 编辑
摘要:如果进行简单升降序使用以下功能一般就够用 import pandas as pd # 数据 df = pd.DataFrame({'A':['a','c','b','d','a'],'B':[5,4,3,2,1]}) # 按照B列值进行排序 # ascending为True代表升序,False为降序 阅读全文
posted @ 2024-12-08 20:36 wstong 阅读(11) 评论(0) 推荐(0) 编辑
摘要:最近遇到edge打开就崩溃的问题,想换成chrome,但是edge里面的书签和密码还未导出,再查询后得出以下办法。 文件位置 密钥位置 C:\Users\用户名\AppData\Local\Microsoft\Edge\User Data\Local State 加密的密码位置 C:\Users\用 阅读全文
posted @ 2024-12-02 22:23 wstong 阅读(43) 评论(0) 推荐(0) 编辑