03 2023 档案

摘要:一、官方文档: https://docs.pytest.org/en/stable/index.html 二、pytest使用 pytest 使用规范 需要提前安装:pip install pytest 文件名必须要以test_开头(注意下划线) 类名必须要以Test开头(注意大写) 方法名必须要以 阅读全文
posted @ 2023-03-21 14:24 梁上尘 阅读(579) 评论(0) 推荐(0) 编辑
摘要:Truncate、delete、drop区别 一、Truncate使用 truncate user_table; 清空表的数据,但不破坏表结构 二、delete使用 delete from user_table where id = 1; 删除指定数据,要跟where条件(不过业务中大多是逻辑删除, 阅读全文
posted @ 2023-03-04 17:58 梁上尘 阅读(72) 评论(0) 推荐(0) 编辑
摘要:判断列表中元素是否一致 def list_equal(list): return list[1:] == list[:-1] 如上:只需要运用切片,倒序并进行对比就好,无需for循环一一比较 阅读全文
posted @ 2023-03-04 15:49 梁上尘 阅读(18) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示