简化一下代码,便于观察:
class Short(Exception): def __str__(self): return 'AAABBB' try: p = 'abcd' if len(p)<6: raise Short() except Exception as e: print(e) 输出: AAABBB