您好,登錄后才能下訂單哦!
本篇文章為大家展示了assert語句怎么在Python中使用,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
簡單用法:
assert expression
讓我們用程序來測試這個expression,如果expression相當于False,那么raise一個AssertionError出來。
即邏輯上等同于:
if not expression: raise AssertionError
簡單看看這些例子:
>>> assert True >>> assert False Traceback (most recent call last): File "<pyshell#3>", line 1, in <module> assert False AssertionError >>> assert 1==1 >>> assert 1==0 Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> assert 1==0 AssertionError >>> assert [1, 2] # 非空列表值得注意一下,雖說也沒個啥,哈哈 >>> assert not [1, 2] Traceback (most recent call last): File "<ipython-input-48-eae410664122>", line 1, in <module> assert not [1, 2] AssertionError
為assert斷言語句添加異常參數
assert的異常參數,其實就是在斷言表達式后添加字符串信息,一般用來解釋斷言。格式如下:
assert expression [, arguments]
assert 表達式 [, 參數]
舉例請看之后的代碼
一些重要的細節
老鐵們可以試著運行一下以下代碼段:
>>> assert None, 'None若作為布爾表達式,則相當于False' >>> assert [], '空列表若作為布爾表達式,則相當于False' >>> assert (), '空元組若作為布爾表達式,則相當于False' >>> assert {}, '空字典若作為布爾表達式,則相當于False' >>> assert set(), '空集合若作為布爾表達式,則相當于False' >>> assert '', '空字符串若作為布爾表達式,則相當于False'
當然還有奇葩的numpy
>>> a = np.array([1, 2]) >>> assert a Traceback (most recent call last): File "<ipython-input-45-63e954d94e9b>", line 1, in <module> assert aa ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
是的,你沒看錯,哪里有numpy,哪里就有Use a.any() or a.all()......
最后,再試一試這倆吧:
>>> assert np.array([]) >>> assert np.array([[], []])
上述內容就是assert語句怎么在Python中使用,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。