今天再做接口自动化练习的时候,碰到了这个报错, 初看一下,就是数据类型错误。 报错:TypeError: list indices must be integers or slices, not str 仔细分析一下自己的报错信息,发现,原来是list的索引错误了。 解决方法: 少了那个索引,导致把 ...
分类:
其他好文 时间:
2021-06-19 18:49:15
阅读次数:
0
You are given two strings s and p where p is a subsequence of s. You are also given a distinct 0-indexed integer array removable containing a subset o ...
分类:
其他好文 时间:
2021-06-15 18:05:39
阅读次数:
0
日常报错(累~): 小编最近用yolact对BraTS数据集做预测,验证结果如下: 发现ET对于Dice和PPV太小了,根据公式,我一开始以为是模型预测的区域过多导致的。 后面生成图片观察: 忽然之间,意识到,是自己的target生成错了。笔者对这个三个区域,首先是采用边缘提取,获取边缘的坐标,之后 ...
分类:
其他好文 时间:
2021-06-13 10:35:43
阅读次数:
0
题目:https://vjudge.z180.cn/problem/LightOJ-1248#author=0 题意:掷骰子,每个面至少出现一次的投掷期望 题解:几何分布 #include <algorithm> #include <bitset> #include <cmath> #include ...
分类:
其他好文 时间:
2021-06-09 15:28:58
阅读次数:
0
采集nginx日志的时候发现从filebeat采集的json日志到elasticsearch里面都是keyword类型,导致我模糊查询部分字段的时候无法模糊匹配,所以需要将某些字段改成text类型。 filebeat.inputs: - type: log enabled: true json.ke ...
分类:
移动开发 时间:
2021-03-30 13:11:53
阅读次数:
0
程序员书库(ID:OpenSourceTop)编译链接:https://readwrite.com/2011/05/28/free-e-books-on-c/、https://www.ossblog.org/master-csharp-programming-open-source-books/一直以来,C#都被各大排行列为流行的编程,根据DennisB.Moore的研究,C#是Dice.com上
1.shape_trans_xld 获取的最小外接矩形点顺序 shape_trans_xld(ContoursAffineTrans, XLDTrans,'rectangle2') get_contour_xld(XLDTrans, Row1, Col1) tuple_min(Row1,rowMin ...
分类:
其他好文 时间:
2020-09-24 22:05:26
阅读次数:
59
首先,这是一道经典的期望dp题 因为最终状态 \((所有面都被筛到过)\) 是确定的,所以才用 逆推 ,设状态 \(f[i]\) 表示已经筛到了 \(i\) 个不同的面,有 \(i\over n\) 的概率是由$ f[i] $ 转移而来的, 也就是筛到了之前筛过的面,有 \({n-i\over n} ...
分类:
其他好文 时间:
2020-09-17 19:00:17
阅读次数:
29
ElasticSearch 是一款Java编写的企业级搜索服务,启动此服务默认会开放HTTP-9200端口,可被非法操作数据。1.熟悉的响应 You Know, for Search2.漏洞测试安装了river之后可以同步多种数据库数据(包括关系型的mysql、mongodb等)。http://lo... ...
分类:
其他好文 时间:
2020-07-24 21:49:40
阅读次数:
209
转自:Django模型中的OneToOneField和ForeignKey有什么区别? 在stackoverflow发了个帖子问这个问题(http://stackoverflow.com/questions/5870537/whats-the-difference-between-django-on ...
分类:
Web程序 时间:
2020-07-12 16:47:52
阅读次数:
51