AutoFramework/main5.py

7 lines
113 B
Python

try:
assert 1 == 2
except AssertionError:
print('断言错误')
except Exception:
print('出错了')