04 2021 档案

摘要:1.markdown编写工具——Typora 2.原型工具——Axure RP 9 3.数据库建模工具——PowerDesign或者PDMain 4.SSH连接工具——MobaXterm 5.PDF转换工具——迅捷PDF转换器或者嗨格式PDF转换器 6.系统文件搜索——Everything 7.系统 阅读全文
posted @ 2021-04-29 11:53 叨叨勋 阅读(212) 评论(0) 推荐(0)
摘要:方法一:停止Windows Management Instrumentation服务 1、win+r打开运行输入services.msc。打开服务管理器 2、找到Windows Management Instrumentation服务,此服务与用户界面有关,停止该服务; 3、然后定位至C:\Wind 阅读全文
posted @ 2021-04-29 11:38 叨叨勋 阅读(1133) 评论(0) 推荐(0)
摘要:server { listen 80; client_max_body_size 20M; location /pdf/ { expires -1s; add_header Last-Modified ""; add_header Cache-Control no-cache; root /home 阅读全文
posted @ 2021-04-28 19:01 叨叨勋 阅读(401) 评论(0) 推荐(0)
摘要:Sub Sort_Sheets() Dim sCount As Integer, I As Integer, R As Integer ReDim Na(0) As String sCount = Sheets.Count For I = 1 To sCount ReDim Preserve Na( 阅读全文
posted @ 2021-04-26 10:20 叨叨勋 阅读(475) 评论(0) 推荐(0)
摘要:Excel 上市公司年报 bd_quoted_company_annual_report 字段中文名 字段名 字段类型 注释 主键 默认值 字段名 对象ID object_id VARCHAR(100) 对象ID OBJECT_ID 证券代码 stock_code VARCHAR(40) 证券代码 阅读全文
posted @ 2021-04-26 10:12 叨叨勋 阅读(202) 评论(0) 推荐(0)
摘要:import requests url = "https://网址/static/img/banner02.c2e5c60.png" path = "anner02.c2e5c60.png" r = requests.get(url) with open(path, "wb") as f: f.wr 阅读全文
posted @ 2021-04-26 09:56 叨叨勋 阅读(90) 评论(0) 推荐(0)
摘要:常用方法: 使用get_text()方法可以获取当前标签下的所有文字,包括其子标签的,该方法可自动剔除其余的修饰标签 若当前标签的子节点是文字,可使用.string获得其下的文本内容 高阶方法: 若文本属于此标签的一个子节点、兄弟节点、父节点等,可灵活使用以下遍历方法进行获取: 1.下行遍历 标签树 阅读全文
posted @ 2021-04-25 19:18 叨叨勋 阅读(1873) 评论(0) 推荐(0)
摘要:去除数字,特殊字符,只保留汉字 import re s = '1123*#$ 中abc国' str = re.sub('[a-zA-Z0-9'!"#$%&\'()*+,-./:;<=>?@,。?★、…【】《》?“”‘'![\\]^_`{|}~\s]+', "", s) # 去除不可见字符 str = 阅读全文
posted @ 2021-04-23 14:15 叨叨勋 阅读(1752) 评论(0) 推荐(0)
摘要:打开Excel文档,按“Alt+F11”进入VBA环境。右击“Microsoft Excel 对象”,从其扩展菜单中选择“插入”-“模块”项。 接着在打开的“模块1”编辑界面中,输入如图所示的代码: Function GetActAddress(HlinkCell) Application.Vola 阅读全文
posted @ 2021-04-23 10:15 叨叨勋 阅读(1459) 评论(0) 推荐(0)