Town Field Poem:
Cheng listens to the Tathagata language, the world name and benefit of Dayton. Be willing to do the Tibetan apostles, the broad show is by Sanfu mention.
I would like to do what I learned, to achieve a conscience blog. May all the Yimeimei, reproduce the wisdom of the body.
——————————————————————————————————————————
Code
#在try中, detection errors cause the remaining statements to no longer execute try: s1=1+ ' 1 ' print (' will not be output ') except: print (' error ') print (' ==================== ') #try-except-finally, because some finishing work, regardless of whether the exception is to do the work try: print (' work1 work ') #work1需要收尾, that is, close some files s1=1+ ' 1 ' Print (' Work1 's finishing touches ') #因为上一句话的错误产生, the finishing touches are ignored, causing a hazard to the except: print (' crash ') print (' ==================== ') #改进try: print (' work1 work ') #work1需要收尾, i.e. close some files s1=1+ ' 1 ' except: print (' Crash ') finally: print (' Work1 's finishing touches ') ) #这的语言, regardless of the occurrence of the exception will occur
Result
——————————————————————————————————————————
The essence of the blog, in the technical part, more in the town yard a poem. Python version 3.5, System Windows7.
Python is a good language and deserves to be studied hard. I am following the small Turtle Video tutorial to learn, recommended.
I am a novice, so if the content of the blog can be improved, or even the wrong place, please leave a comment, I will try to correct, strive to achieve a conscience blog.
Note: This article is only as a scientific research study, if I inadvertently violated your rights and interests, please be sure to timely inform, I will make corrections.
Simple example of Python3 base try-except-finally