摘要: 一、补零 if __name__ == '__main__': str1 = '130000' for a in range(100): print(str1 + str(a).zfill(5)) 二、补空格 2.1、rjust:右对齐 if __name__ == '__main__': str_ 阅读全文
posted @ 2020-08-04 23:05 淡怀 阅读(12575) 评论(0) 推荐(0) 编辑
摘要: 一、YAML配置文件 修改前 chrome_path: chromedriver.exe jobs: - A1 uestcedu_url: https://www.baidu.com 修改后 chrome_path: chromedriver.exe jobs: - A1 - A2(New) ues 阅读全文
posted @ 2020-07-28 18:10 淡怀 阅读(645) 评论(0) 推荐(0) 编辑
摘要: import json str = '{"status":"500","data":null,"time":1595921796,"info":"测试测试"}' # 字符串转换为JSON格式 str_json = json.loads(str) # 格式化输出JSON # sort_keys:是否按 阅读全文
posted @ 2020-07-28 15:44 淡怀 阅读(4408) 评论(0) 推荐(0) 编辑
摘要: 封装概述: 把具有一定功能的代码封装起来(下次再实现此功能时就不用再写了,直接调用即可) 把加减乘除四则运算封装: calc_util\calc.py class CalcClass: def jia(self, a, b): return a + b def jian(self, a, b): r 阅读全文
posted @ 2020-07-08 09:36 淡怀 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 一、技能1、python基础知识: 封装(【Python】+系列教程(1、封装))继承多态多线程装饰器OOP编程思维 2、web框架: DjangoFlask 3、数据分析工具 PandasNumpyScipyMatplotlib 4、Python操作数据库 5、自动化selenium 6、机器学习 阅读全文
posted @ 2020-07-08 08:03 淡怀 阅读(189) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/jaffe507/article/details/105888285?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-3.nonecase&d 阅读全文
posted @ 2020-07-07 18:24 淡怀 阅读(253) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/ken-yu/p/12531168.html 阅读全文
posted @ 2020-07-06 08:46 淡怀 阅读(3227) 评论(0) 推荐(0) 编辑
摘要: 一、问题: 如下图 抓取的https请求 没有具体接口名 或者 抓取到的数据乱码 二、解决 2.1、安装证书 2.2、配置抓取所有接口 三、验证 ok 抓到的https接口的数据没有乱码了 阅读全文
posted @ 2020-07-06 05:39 淡怀 阅读(841) 评论(0) 推荐(0) 编辑
摘要: 一、maven依赖 <!-- 操作sqlite数据库 start--> <!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc --> <dependency> <groupId>org.xerial</groupId> <art 阅读全文
posted @ 2020-06-29 01:27 淡怀 阅读(448) 评论(0) 推荐(0) 编辑
摘要: 1、下载PyCharm(IDE) pycharm2020.1.3 官网:https://www.jetbrains.com/pycharm/download/#section=windows 激活:https://www.cnblogs.com/zhaobowen/p/13360775.html 下 阅读全文
posted @ 2020-06-27 19:56 淡怀 阅读(136) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-06-27 18:20 淡怀 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1、编译报错 Error:(16, 8) java: 无法将类 uiauto.web.common.OperationNewLabelPageImpl中的构造器 OperationNewLabelPageImpl应用到给定类型; 需要: org.openqa.selenium.chrome.Chro 阅读全文
posted @ 2020-06-23 23:13 淡怀 阅读(16482) 评论(0) 推荐(0) 编辑
摘要: 一、效果 二、代码 2.1、maven依赖 <!-- lombok插件 start--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.8</versio 阅读全文
posted @ 2020-06-17 12:56 淡怀 阅读(1065) 评论(0) 推荐(1) 编辑
摘要: 说明:以下观点与言论 纯属个人观点与总结 仅为给自己做一个人生备忘与记录 不做任何解释与责任承担 谢谢 (待实现了人生第一个百万目标后再来看这篇文章 意义非凡) 刚在洗澡的时候突然想明白一件事 以前在脑海中想象挣1百万 感觉很难很难 但如果把1百万拆分成如下场景 就简单多了 拆分问题: 1百万 = 阅读全文
posted @ 2020-06-13 21:47 淡怀 阅读(251) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/danhuai/p/13051245.html 阅读全文
posted @ 2020-06-05 18:25 淡怀 阅读(1633) 评论(0) 推荐(0) 编辑
摘要: 1、安装Scene Builder以及IDEA配置Scene Builder:https://blog.csdn.net/u011781521/article/details/86632482 备注:Scene Builder的作用就是相当于QT的设计师(即解析生成界面的代码) 2、组件使用:htt 阅读全文
posted @ 2020-06-05 18:11 淡怀 阅读(9571) 评论(0) 推荐(0) 编辑
摘要: 一、原理: http://www.ruanyifeng.com/blog/2011/07/principle_of_similar_image_search.html http://www.ruanyifeng.com/blog/2013/03/similar_image_search_part_i 阅读全文
posted @ 2020-06-01 18:11 淡怀 阅读(1209) 评论(0) 推荐(0) 编辑
摘要: 一、方式1 1.如上图所示 导出为svg 2.然后使用文本编辑器打开。【默认会使用浏览器的打开方式。需要你右键,选择你自己的文本编辑器,没有的话,可以使用文本编辑器打开】 3.找到以下的text标签【一般在文档末尾】。 <text x="275" xml:space="preserve" y="36 阅读全文
posted @ 2020-06-01 16:15 淡怀 阅读(1094) 评论(0) 推荐(0) 编辑
摘要: 一、题目不能复制 解决方案1:修改元素属性 onselectstart ="return false" 修改为 onselectstart ="return true" 解决方案2:直接在代码中复制 视频教程:https://www.yuque.com/docs/share/163384c8-1ca 阅读全文
posted @ 2020-05-30 18:47 淡怀 阅读(356) 评论(0) 推荐(0) 编辑
摘要: yaml快速入门:https://www.jianshu.com/p/97222440cd08 Java读写yaml文件:https://blog.csdn.net/u013410747/article/details/51647535?utm_source=app 一、maven依赖 <!-- h 阅读全文
posted @ 2020-05-27 18:09 淡怀 阅读(2077) 评论(0) 推荐(0) 编辑
摘要: 参考:Java 代码优化之细节是魔鬼 示例代码 public class test { public static void tryCatch(){ String a = null; try { System.out.println(a.equals("aa")); }catch (Exceptio 阅读全文
posted @ 2020-05-22 09:38 淡怀 阅读(693) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/danhuai/p/12213862.html 阅读全文
posted @ 2020-05-21 18:21 淡怀 阅读(934) 评论(0) 推荐(0) 编辑
摘要: 修改json指定路径的值:https://blog.csdn.net/liupeifeng3514/article/details/79180154 代码: public static void main(String[] args) { String str = "{\"bussDatas\":[ 阅读全文
posted @ 2020-05-14 21:46 淡怀 阅读(3682) 评论(0) 推荐(0) 编辑
摘要: 1、冻结首行 https://blog.csdn.net/qq_24076135/article/details/77449898 sheet.createFreezePane(0,1,0,1); 2、设置单元格背景色 单元格设置:https://blog.csdn.net/qq_27937043/ 阅读全文
posted @ 2020-05-13 23:26 淡怀 阅读(299) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { String str = "[测试}"; if (str.startsWith("[")) { System.out.println(String.format("首位:[")); } if (str.endsWith 阅读全文
posted @ 2020-05-12 17:26 淡怀 阅读(1788) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/mxw2552261/article/details/79447798 https://blog.csdn.net/bjweimengshu/article/details/88386734 一、系统架构图 又称泳道图, 二、业务流程图 三、任务流程图 四 阅读全文
posted @ 2020-05-06 22:48 淡怀 阅读(387) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/shoufeng/p/11196500.html JSONObject object = JSONObject.parseObject(jsonString); String pretty = JSON.toJSONString(object, Ser 阅读全文
posted @ 2020-05-04 23:00 淡怀 阅读(1795) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/xue632777974/article/details/80437452 阅读全文
posted @ 2020-05-04 13:31 淡怀 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 用toString 会遇到空指针的现象 直接用 String.valueOf 来替代 阅读全文
posted @ 2020-04-26 19:01 淡怀 阅读(586) 评论(0) 推荐(0) 编辑
摘要: =COUNTA(B:B) 阅读全文
posted @ 2020-04-26 01:24 淡怀 阅读(1416) 评论(0) 推荐(0) 编辑
摘要: 1、一个sheet表引用另一个sheet表中的值(!号关联) 第一个sheet表 第二个sheet表(引用第一个sheet表的值) =sheet表1!B2 阅读全文
posted @ 2020-04-26 01:15 淡怀 阅读(3416) 评论(0) 推荐(0) 编辑
摘要: https://zhidao.baidu.com/question/546207054.html 阅读全文
posted @ 2020-04-23 17:13 淡怀 阅读(1166) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u011983531/article/details/80248945 阅读全文
posted @ 2020-04-23 08:44 淡怀 阅读(1499) 评论(0) 推荐(0) 编辑
摘要: package team.giat.branch.api_risignhf.testcase; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.I 阅读全文
posted @ 2020-04-15 10:51 淡怀 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 一、maven依赖 备注:maven仓库官方(https://mvnrepository.com/) <!-- WebSocket start--> <dependency> <groupId>org.java-websocket</groupId> <artifactId>Java-WebSock 阅读全文
posted @ 2020-04-15 00:22 淡怀 阅读(7580) 评论(2) 推荐(1) 编辑
摘要: 教程:https://www.runoob.com/svn/tortoisesvn-intro.html 问题:IDEA报错(Can't use Subversion command line client: svn The path to the Subversion executable is 阅读全文
posted @ 2020-04-13 16:15 淡怀 阅读(150) 评论(0) 推荐(0) 编辑
摘要: https://www.yuque.com/zhangguoxiang-tzwxl/se4icc/zunlpm 阅读全文
posted @ 2020-04-12 01:46 淡怀 阅读(177) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xiaxiaoxu/p/9607017.html 阅读全文
posted @ 2020-04-03 17:37 淡怀 阅读(120) 评论(0) 推荐(0) 编辑
摘要: Java创建多线程的8种方式:https://blog.csdn.net/itcats_cn/article/details/81149232 一、多个带返回值的线程 import java.util.concurrent.*; /** * @Author : * @Date : * @Descri 阅读全文
posted @ 2020-03-31 12:21 淡怀 阅读(127) 评论(0) 推荐(0) 编辑
摘要: sqlmap(检测网址是否有sql注入漏洞):https://www.jianshu.com/p/3d3656be3c60 阅读全文
posted @ 2020-03-26 12:45 淡怀 阅读(163) 评论(0) 推荐(0) 编辑