python返回程序问题并结束程序函数sys.exit(1)

try:
    height, width = thresh.shape
except:
    print('find_S has error')
    sys.exit(1)

上述程序中,thresh是个矩阵,当里面没有信息时,矩阵的shape会产生报错,此时就需要进入except进行程序的退出并打印报错。

你可能感兴趣的:(python)