這篇文章主要介紹“如何解決Python報(bào)錯(cuò)”,在日常操作中,相信很多人在如何解決Python報(bào)錯(cuò)問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何解決Python報(bào)錯(cuò)”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
我們提供的服務(wù)有:成都網(wǎng)站制作、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、新華ssl等。為上千企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的新華網(wǎng)站制作公司
寫代碼必然會(huì)出現(xiàn)錯(cuò)誤,而錯(cuò)誤處理可以針對這些錯(cuò)誤提前做好準(zhǔn)備。通常出現(xiàn)錯(cuò)誤時(shí),腳本會(huì)停止運(yùn)行,而有了錯(cuò)誤處理,腳本就可以繼續(xù)運(yùn)行。為此,我們需要了解下面三個(gè)關(guān)鍵詞:
try:這是要運(yùn)行的代碼塊,可能會(huì)產(chǎn)生錯(cuò)誤。
except:如果在try塊中出現(xiàn)錯(cuò)誤,將執(zhí)行這段代碼。
finally:不管出現(xiàn)什么錯(cuò)誤,都要執(zhí)行這段代碼。
現(xiàn)在,我們定義一個(gè)函數(shù)“summation”,將兩個(gè)數(shù)字相加。該函數(shù)運(yùn)行正常。
>>> defsummation(num1,num2): print(num1+num2)>>>summation(2,3) 5
接下來,我們讓用戶輸入其中一個(gè)數(shù)字,并運(yùn)行該函數(shù)。
>>> num1 = 2 >>> num2 = input("Enter number: ") Enter number: 3>>> summation(num1,num2)>>> print("Thisline will not be printed because of the error") --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-6-2cc0289b921e> in <module> ----> 1 summation(num1,num2) 2 print("This line will notbe printed because of the error") <ipython-input-1-970d26ae8592> in summation(num1, num2) 1 def summation(num1,num2): ----> 2 print(num1+num2) TypeError: unsupported operand type(s) for +: int and str
“TypeError”錯(cuò)誤出現(xiàn)了,因?yàn)槲覀冊噲D將數(shù)字和字符串相加。請注意,錯(cuò)誤出現(xiàn)后,后面的代碼便不再執(zhí)行。所以我們要用到上面提到的關(guān)鍵詞,確保即使出錯(cuò),腳本依舊運(yùn)行。
>> try: summed = 2 + 3 except: print("Summation is not ofthe same type")Summation is not of the same type
可以看到,try塊出現(xiàn)錯(cuò)誤,except塊的代碼開始運(yùn)行,并打印語句。接下來加入“else”塊,來應(yīng)對沒有錯(cuò)誤出現(xiàn)的情況。
>>> try: summed = 2 + 3 except: print("Summation is not ofthe same type") else: print("There was no errorand result is: ",summed)There was no error and result is: 5
接下來我們用另外一個(gè)例子理解。這個(gè)例子中,在except塊我們還標(biāo)明了錯(cuò)誤類型。如果沒有標(biāo)明錯(cuò)誤類型,出現(xiàn)一切異常都會(huì)執(zhí)行except塊。
>>> try: f = open( test , w ) f.write("This is a testfile") except TypeError: print("There is a typeerror") except OSError: print("There is an OSerror") finally: print("This will print evenif no error")This will print even if no error
現(xiàn)在,故意創(chuàng)造一個(gè)錯(cuò)誤,看看except塊是否與finally塊共同工作吧!
>>> try: f = open( test , r ) f.write("This is a testfile") except TypeError: print("There is a typeerror") except OSError: print("There is an OSerror") finally: print("This will print evenif no error")There is an OS error This will print even if no error
到此,關(guān)于“如何解決Python報(bào)錯(cuò)”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
網(wǎng)站欄目:如何解決Python報(bào)錯(cuò)
網(wǎng)站地址:http://aaarwkj.com/article34/gihjse.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、云服務(wù)器、網(wǎng)站收錄、網(wǎng)頁設(shè)計(jì)公司、面包屑導(dǎo)航、網(wǎng)站營銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)