python assert用法一.assert函数
一.assert函数 Python assert(断言)用于判断一个表达式,在表达式条件为 false 的时候触发异常。 用法:assert 1==2 报错:AssertionError