python中 try、except、finally 的执行顺序

    def test1(): try: print('to do stuff') raise Exception('hehe') print('to return in try') return 'try' except Exception: print('process except') print('to re
相关文章
相关标签/搜索