分享别人的链接:https://www.cnblogs.com/shapeL/p/9188495.html 前言: 上篇文章python3+requests+unittest:接口自动化测试(一):https://www.cnblogs.com/shapeL/p/9179484.html , 已经介 ...
分类:
其他好文 时间:
2020-05-05 10:25:40
阅读次数:
76
公司计划面试 2N 人。第 i 人飞往 A 市的费用为 costs[i][0],飞往 B 市的费用为 costs[i][1]。 返回将每个人都飞到某座城市的最低费用,要求每个城市都有 N 人抵达。 示例: 输入:[[10,20],[30,200],[400,50],[30,20]]输出:110解释: ...
分类:
其他好文 时间:
2020-05-04 17:05:32
阅读次数:
65
DROP TABLE IF EXISTS "CNYB"."CT_DAY_PLANT_001";CREATE TABLE "CNYB"."CT_DAY_PLANT_001"( "ID" VARCHAR(32) NOT NULL, "YEAR" VARCHAR(4) NOT NULL, "DATE" V ...
分类:
其他好文 时间:
2020-05-04 13:18:33
阅读次数:
55
一、类与对象和构造函数 class Point: def __init__(self,x,y): self.x = x self.y = y def move(self): print("move") def draw(self): print("draw") 创建一个对象 point1 = Poi ...
分类:
编程语言 时间:
2020-05-04 13:16:49
阅读次数:
54
A:A?C 题目链接: https://atcoder.jp/contests/abc166/tasks/abc166_a Code: B:Trick or Treat 题目链接: https://atcoder.jp/contests/abc166/tasks/abc166_b Code: ...
分类:
其他好文 时间:
2020-05-04 10:36:23
阅读次数:
71
Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and crusts can be found in traditional ...
分类:
其他好文 时间:
2020-05-03 21:57:42
阅读次数:
87
一、参考网址:https://baike.baidu.com/item/%E7%99%BE%E5%B9%B4%E5%AD%A4%E7%8B%AC/688708?fr=aladdin 二、源代码: import requestsdef A(): try: r=requests.get(url) r.r ...
分类:
其他好文 时间:
2020-05-03 20:58:08
阅读次数:
82
测试环境:phpstudy2018+win10 漏洞出现原因:Apahce中httpd.conf配置错误导致 原理:当客户端访问到一个目录时,Apache服务器将会默认寻找一个index list中的文件,若文 件不存在,则会列出当前目录下所有文件或返回403状态码,而列出目录下所有文件的行为称为目 ...
分类:
Web程序 时间:
2020-05-02 22:45:18
阅读次数:
249
将后端传来的数据转为要展示的数据: {name:'手机',state:'0'}, {name:'电脑',state:'1'}, {name:'包包',state:'2'}, {name:'衣服',state:'1'}将state对应的值转为要展示的值 window.onload = function ...
分类:
其他好文 时间:
2020-05-02 19:04:19
阅读次数:
76
一步步学习MDL-CE[0] [1] [2] [3] [4] [5] [6] [7] [8] 本系列博客将由浅入深地帮助您学习MicroStation CONNECT版的MDL开发。按照本博客的步骤,相信您能很快地掌握这一开发MicroStation应用程序的最主要方法。 第零章、介绍与必备条件 从 ...
分类:
编程语言 时间:
2020-05-02 12:08:37
阅读次数:
111