摘要:
阅读全文
posted @ 2020-08-19 14:56
黑夜里的月亮
阅读(77)
评论(0)
推荐(0)
摘要:
创建数据库/表,向表中插入数据 如果数据库不存在则创建,存在则不创建(if not exists),也可以省略不会报错。 创建testdate数据库,并设定编码集为utf8 #创建数据库testdate; create database if not exists test02 default ch 阅读全文
posted @ 2020-08-19 14:44
黑夜里的月亮
阅读(1277)
评论(0)
推荐(1)
摘要:
一、安装unittestreport pip install unittestreport 具体使用方法:https://github.com/musen123/UnitTestReport 二、 具体实例参考用法 1 #coding:utf-8 2 import unittest 3 from u 阅读全文
posted @ 2020-08-11 17:19
黑夜里的月亮
阅读(778)
评论(0)
推荐(0)