官方文档地址:https://docs.python.org/zh-cn/3.7/library/unittest.html#class-and-module-fixtures 一、关于一些基本概念 Test fixture 官方文档把这个词翻译成“测试脚手架”,个人理解,是启动测试前的准备工作,根 ...
分类:
编程语言 时间:
2020-07-23 15:49:59
阅读次数:
88
《提问的智慧》: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/master/README-zh_CN.md Python 3.7.7 官方文档: https://docs.python.org/zh-cn/ ...
分类:
编程语言 时间:
2020-07-23 01:50:44
阅读次数:
106
【0】什么叫静默安装 其实就是用命令提示符 使用参数文件 或直接代码参数的方式安装,这样就不需要人一直点下一步下一步了 【1】静默安装 官网参考:https://docs.microsoft.com/zh-cn/sql/database-engine/install-windows/install- ...
分类:
数据库 时间:
2020-07-22 20:25:06
阅读次数:
84
Windows 开发人员中心 https://docs.microsoft.com/zh-cn/windows/ DirectX 英文文档 https://docs.microsoft.com/en-us/windows/win32/direct3d12/directx-12-programming ...
分类:
其他好文 时间:
2020-07-22 16:10:23
阅读次数:
219
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>图片 ...
分类:
编程语言 时间:
2020-07-21 13:37:05
阅读次数:
105
1. urllib https://docs.python.org/zh-cn/3/library/urllib.request.html#module-urllib.request 2. BeautifulSoup https://www.crummy.com/software/Beautiful ...
分类:
其他好文 时间:
2020-07-21 01:10:58
阅读次数:
71
环境:win10,64位进入下载:https://www.microsoft.com/zh-CN/download/details.aspx?id=30679注意:64位系统要同时安装x86和x64才可以 ...
分类:
编程语言 时间:
2020-07-20 13:31:40
阅读次数:
282
xampp下载地址 https://www.apachefriends.org/zh_cn/index.html 下载完后进行安装,完毕后,打开xampp就来到软件页面如下 搭建pikachu靶场需要开启Apache和MySQL,点击对应start就可以开启, 开启Apache和MySQL一般会遇到 ...
分类:
其他好文 时间:
2020-07-19 23:12:21
阅读次数:
87
将应用程序部署到Azure,操作还是很好上手,也不容易出错。下面就来说一下我部署的过程: 1.创建免费账户 点击 https://azure.microsoft.com/zh-cn/free/devops/ 输入邮箱,设置密码,这一步没什么大问题。如果您已经有Microsoft 账户,则可直接使用。 ...
分类:
编程语言 时间:
2020-07-19 16:05:52
阅读次数:
91
# 格式化字符串: 在字符串前加上 f 或者 F 使用 {变量名} 的形式来使用变量名的值 year = 2020 event = 'Referendum' value = f'Results of the {year} {event}' print(f'Results of the {year} ...
分类:
编程语言 时间:
2020-07-19 00:35:57
阅读次数:
139