1
2
3
4
5
6
7
#!/usr/bin/env python
# -*- coding:utf-8 -*-

branches =1
x= 2
assert (branches) == (x)
print(1)

__assert__语句其实可以当作一个try exception使用

不满足条件即程序中断