Python3 錯誤和異常
Python3 錯誤和異常
錯誤和異常是不同的兩個概念。通常,我們所說的錯誤是指語法錯誤和邏輯錯誤。語法錯誤在編譯時就可以發(fā)現(xiàn)和改正,邏輯錯誤需要在代碼中結(jié)合業(yè)務(wù)情況進行判斷處理。
異常是指運行期出現(xiàn)的不可預(yù)期的情況,通常會導(dǎo)致程序程序意外退出。為了提高系統(tǒng)的健壯性,在 Python 代碼中必須處理可能出現(xiàn)的異常。
語法錯誤
Python 的語法錯誤或者稱之為解析錯,是初學(xué)者經(jīng)常碰到的,如下范例
>>> while True print('Hello world')
? File "<stdin>", line 1, in ?
? ? while True print('Hello world')
? ? ? ? ? ? ? ? ? ?^
SyntaxError: invalid syntax
? File "<stdin>", line 1, in ?
? ? while True print('Hello world')
? ? ? ? ? ? ? ? ? ?^
SyntaxError: invalid syntax
相關(guān)文章
- Python GUI編程 Tkinter
- Python 哈希表
- Python 算法設(shè)計
- Python3 面向?qū)ο?/a>
- Python3 XML 解析
- Python sqrt() 函數(shù)
- Python os.chflags() 方法
- Python os.ftruncate() 方法
- Python os.lstat() 方法
- Python os.pathconf() 方法
- Python os.pipe() 方法
- Python os.tempnam() 方法
- Python lstrip()方法
- Python List count()方法
- Python List pop()方法
- Python List remove()方法
- Python 字典 Dictionary get()方法
- Python 字典 Dictionary items()方法
- Python 字典 Dictionary popitem() 方法
- Python time gmtime()方法