您好,登錄后才能下訂單哦!
這篇文章主要介紹在Python中使用assert的作用是什么,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
python的數據類型:1. 數字類型,包括int(整型)、long(長整型)和float(浮點型)。2.字符串,分別是str類型和unicode類型。3.布爾型,Python布爾類型也是用于邏輯運算,有兩個值:True(真)和False(假)。4.列表,列表是Python中使用最頻繁的數據類型,集合中可以放任何數據類型。5. 元組,元組用”()”標識,內部元素用逗號隔開。6. 字典,字典是一種鍵值對的集合。7. 集合,集合是一個無序的、不重復的數據組合。
斷言語句有兩種形式。
簡單的形式, assert <expression>
,相當于
if __debug__: if not <expression>: raise AssertionError
擴展形式assert <expression1>, <expression2>
等同于
if __debug__: if not <expression1>: raise AssertionError, <expression2>
這是一個簡單的例子,將其保存在文件中(假設為b.py)
def chkassert(num): assert type(num) == int chkassert('a')
和$python b.py
時的結果
Traceback (most recent call last): File "b.py", line 5, in <module> chkassert('a') File "b.py", line 2, in chkassert assert type(num) == intAssertionError
斷言是一種系統的方法,用于檢查程序的內部狀態是否與程序員預期的一樣,目的是捕獲錯誤。 請參閱下面的示例。
>>> number = input('Enter a positive number:') Enter a positive number:-1>>> assert (number > 0), 'Only positive numbers are allowed!'Traceback (most recent call last): File "<stdin>", line 1, in <module>AssertionError: Only positive numbers are allowed!>>>
如果assert之后的語句為true,則程序繼續,但如果assert之后的語句為false,則程序會給出錯誤。 就那么簡單。
例如:
assert 1>0 #normal executionassert 0>1 #Traceback (most recent call last): #File "<pyshell#11>", line 1, in <module> #assert 0>1 #AssertionError
format:assert Expression [,arguments]當assert遇到一個語句時,Python會計算表達式。如果該語句不為true,則引發異常(assertionError)。 如果斷言失敗,Python使用ArgumentExpression作為AssertionError的參數。 可以使用try-except語句像任何其他異常一樣捕獲和處理AssertionError異常,但如果不處理,它們將終止程序并產生回溯。 例:
def KelvinToFahrenheit(Temperature): assert (Temperature >= 0),"Colder than absolute zero!" return ((Temperature-273)*1.8)+32 print KelvinToFahrenheit(273) print int(KelvinToFahrenheit(505.78)) print KelvinToFahrenheit(-5)
執行上面的代碼時,會產生以下結果:
32.0 451 Traceback (most recent call last): File "test.py", line 9, in <module> print KelvinToFahrenheit(-5) File "test.py", line 4, in KelvinToFahrenheit assert (Temperature >= 0),"Colder than absolute zero!" AssertionError: Colder than absolute zero!
以上是“在Python中使用assert的作用是什么”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。