亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在Python中使用assert的作用是什么

發布時間:2021-05-08 15:31:33 來源:億速云 閱讀:237 作者:小新 欄目:編程語言

這篇文章主要介紹在Python中使用assert的作用是什么,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

python的數據類型有哪些?

python的數據類型:1. 數字類型,包括int(整型)、long(長整型)和float(浮點型)。2.字符串,分別是str類型和unicode類型。3.布爾型,Python布爾類型也是用于邏輯運算,有兩個值:True(真)和False(假)。4.列表,列表是Python中使用最頻繁的數據類型,集合中可以放任何數據類型。5. 元組,元組用”()”標識,內部元素用逗號隔開。6. 字典,字典是一種鍵值對的集合。7. 集合,集合是一個無序的、不重復的數據組合。

#1樓

斷言語句有兩種形式。

簡單的形式, assert <expression> ,相當于

if __debug__:
    if not <expression>: raise AssertionError

擴展形式assert <expression1>, <expression2>等同于

if __debug__:
    if not <expression1>: raise AssertionError, <expression2>

#2樓

這是一個簡單的例子,將其保存在文件中(假設為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

#3樓

斷言是一種系統的方法,用于檢查程序的內部狀態是否與程序員預期的一樣,目的是捕獲錯誤。 請參閱下面的示例。

>>> 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!>>>

#4樓

如果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

#5樓

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的作用是什么”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

集贤县| 吉林省| 合阳县| 桂林市| 那坡县| 黄龙县| 忻城县| 洱源县| 西昌市| 古丈县| 沈阳市| 富锦市| 玛沁县| 沂南县| 怀柔区| 上蔡县| 大石桥市| 永昌县| 福鼎市| 长宁县| 宜兴市| 南丹县| 逊克县| 宁津县| 遂溪县| 聂荣县| 滦南县| 东源县| 普定县| 吉首市| 青川县| 福安市| 肃南| 梅河口市| 夏津县| 报价| 葵青区| 绥阳县| 长岭县| 永胜县| 莱芜市|