@data()和@unpack @data((1,2),(3,4)) @unpack def test2(self,dataa,data2): print(dataa,data2) 以上代码是想要生成两个测试用例,第一个用例把ddataa=1,data2=2,第二次用例把dataa=3,data2= ...
分类:
其他好文 时间:
2021-01-27 14:04:25
阅读次数:
0
1、数据库准备 1、192.168.8.162 test1主 2、192.168.8.134 test1从 3、192.168.8.176 test1从 4、192.168.8.162 test2主 5、192.168.8.134 test2从 6、192.168.8.176 test2从 2、准备 ...
分类:
数据库 时间:
2021-01-20 11:42:43
阅读次数:
0
1、 >>> test1 = ["aaa","bbb","aaa","aaa","ccc","ccc","ddd","eee"] >>> test2 = [] >>> for i in test1: if i not in test2: test2.append(i) >>> test2 ['aaa ...
分类:
编程语言 时间:
2021-01-05 10:42:44
阅读次数:
0
zip()用于返回各个可迭代对象共同组成的元组。 >>> test1=["ccc","aaa","ddd","yyy","xxx"] >>> test2=(200,100,400,800,500) >>> test3="daceb" >>> for i in zip(test1,test2,test ...
分类:
编程语言 时间:
2020-12-31 12:01:00
阅读次数:
0
1、 + 号拼接 >>> test1 = "abcd" >>> test2 = "opqr" >>> test3 = "xyzh" >>> test1 + test2 'abcdopqr' >>> test2 + test3 'opqrxyzh' >>> test2 + test1 + test3 ...
分类:
编程语言 时间:
2020-12-31 11:56:50
阅读次数:
0
#GET my_store/_search{ "query": { "match_all": {} }}#添加索引PUT /test2{ "mappings": { "properties": { "name":{ "type": "text" }, "age":{ "type": "long" } ...
分类:
其他好文 时间:
2020-12-08 12:13:35
阅读次数:
4
常用基本命令 目录管理 ls 列出目录 -a参数:all, 查看全部文件,包括隐藏 -l参数:列出所有的文件,包含文件的属性和权限,没有隐藏文件 pwd 显示当前用户所在目录 mkdir 创建目录 -p /test1/test2 递归创建 rmdir 删除目录 rmdir -p 层级删除 cp 复制 ...
分类:
系统相关 时间:
2020-11-11 15:47:30
阅读次数:
57
1 touch 1.1 创建一个文件 touch yyTest.ini 1.2 同时创建两个文件 touch test1.txt test2.txt 1.3 批量创建文件(如创建2000个文件) touch test{0001..2000}.txt 1.4 更改文件 yyTest.ini时间为当前时 ...
分类:
系统相关 时间:
2020-10-29 10:10:49
阅读次数:
39
#include <bits/stdc++.h> using namespace std; int a[103][103],m; int xx[4]={0,0,1,-1},yy[4]={1,-1,0,0}; int f[103][103]; bool mp[103][103]; void dfs(i ...
分类:
其他好文 时间:
2020-10-20 16:35:04
阅读次数:
25
SQL 错误提示:多次为 'b' 指定了列'n' 错误原因:两个关联的表中有名字相同的列,如果要同时取到一张表中,会有冲突,这样就需要指定你取的是哪一个表中的列。 示例:( mm.* ) select *from test a left join (select mm.* from test2 mm ...
分类:
数据库 时间:
2020-09-18 01:14:53
阅读次数:
63