return
def test(): try: return 'Inside try block' except: return 'Inside Exception' finally: return 'Finally block' print test()