91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

assert語句怎么在Python中使用

發布時間:2021-03-24 16:01:07 來源:億速云 閱讀:145 作者:Leah 欄目:開發技術

本篇文章為大家展示了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中使用,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

新蔡县| 邹平县| 海盐县| 高尔夫| 天峨县| 巨野县| 松江区| 准格尔旗| 石景山区| 泾阳县| 兴安县| 嫩江县| 凤山市| 自治县| 连州市| 穆棱市| 宁远县| 海原县| 宜阳县| 葵青区| 德兴市| 年辖:市辖区| 赣州市| 定安县| 房产| 特克斯县| 洮南市| 北海市| 林州市| 资源县| 惠来县| 东明县| 南漳县| 松江区| 阿荣旗| 和田市| 长顺县| 连江县| 镶黄旗| 浦北县| 凌海市|