#coding=utf-8__author__ = '14356_000'try: print '1'except: print '2'else: print '3'finally: print '4'#else执行的条件是try能够正常执行#finally是一定会执行