python 中 assert 的最佳实践 | 桃子的学习笔记
Opened this issue · 0 comments
LeetaoGoooo commented
https://www.leetao94.cn/post/VXzqfuZ3G/
原文连接: When to use assert
前言
assert 又称为断言,在 Python 代码中经常被使用,但是显然也存在滥用的情况。那么在什么时候使用 assert 呢?又或者 assert 的最佳实践是怎么样的呢?
ass...