您好,登錄后才能下訂單哦!
這篇文章主要介紹python中None與NULL的使用方法,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
None是一個對象,而NULL是一個類型。
Python中沒有NULL,只有None,None有自己的特殊類型NoneType。
None不等于0、任何空字符串、False等。
在Python中,None、False、0、""(空字符串)、[](空列表)、()(空元組)、{}(空字典)都相當(dāng)于False。
if X is None
if not X:當(dāng)X為None、False、""、0、[]、()、{}時,not X為真,無法分辨
if not X is None:等價于if not (X is None)、if X is not None
if X is not None寫法清晰明了,且不會出錯,推薦使用;
if not x使用前,必須確定X為None、False、""、0、[]、()、{}時對判斷無影響。
x = [] y = None print 'X is None測試結(jié)果' print x is None #False print y is None #True print 'not X測試結(jié)果' print not x #True print not y #True print 'not X is None測試結(jié)果' print not x is None #True print not y is None #False print 'X is not None測試結(jié)果' print x is not None #True print y is not None #False
補(bǔ)充:python中None與0、Null、false區(qū)別
None是Python中的一個關(guān)鍵字,None本身也是個一個數(shù)據(jù)類型,而這個數(shù)據(jù)類型就是None,它可0、空字符串以及false均不一樣,這些都只是對象,而None也是一個類。
val = None if val: print "None is true" else: print "None is not true" #輸出 None is not true
python的數(shù)據(jù)類型:1. 數(shù)字類型,包括int(整型)、long(長整型)和float(浮點型)。2.字符串,分別是str類型和unicode類型。3.布爾型,Python布爾類型也是用于邏輯運算,有兩個值:True(真)和False(假)。4.列表,列表是Python中使用最頻繁的數(shù)據(jù)類型,集合中可以放任何數(shù)據(jù)類型。5. 元組,元組用”()”標(biāo)識,內(nèi)部元素用逗號隔開。6. 字典,字典是一種鍵值對的集合。7. 集合,集合是一個無序的、不重復(fù)的數(shù)據(jù)組合。
以上是“python中None與NULL的使用方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。