這篇文章主要跟大家介紹了關於Python中內建常數的相關資料,文中介紹的非常詳細,對大家具有一定的參考學習價值,需要的朋友們下面來一起看吧。
前言
大家都知道Python內建的常數不多,只有6個,分別是True、False、None、 NotImplemented、Ellipsis、debug。以下就來看看詳細的介紹:
一. True
#1. True是bool型別用來表示真值的常量。
>>> True True >>> type(True) <class 'bool'>
2. 對常數True進行任何賦值運算都會拋出語法錯誤。
>>> True = 1 SyntaxError: can't assign to keyword
二. False
#1. False是bool型別用來表示假值的常數。
>>> False False >>> type(False) <class 'bool'>
2. 對常數False進行任何賦值運算都會拋出語法錯誤。
>>> False = 0 SyntaxError: can't assign to keyword
三. None
#1. None表示無,它是NoneType的唯一值。
>>> None #表示无,没有内容输出 >>> type(None) <class 'NoneType'>
2. 對常數None進行任何賦值運算都會拋出語法錯誤。
>>> None = 2 SyntaxError: can't assign to keyword
3. 對於函數,如果沒有return語句,即相當於傳回None。
>>> def sayHello(): #定义函数 print('Hello') >>> sayHello() Hello >>> result = sayHello() Hello >>> result >>> type(result) <class 'NoneType'>
四. NotImplemented
#1. NotImplemented是NotImplementedType類型的常數。
>>> NotImplemented NotImplemented >>> type(NotImplemented) <class 'NotImplementedType'>
2. 使用bool()函數進行測試可以發現,NotImplemented是一個真值。
>>> bool(NotImplemented) True
3. NotImplemented不是一個絕對意義上的常數,因為他可以被賦值卻不會拋出語法錯誤,我們也不應該去對其賦值,否則會影響程式的執行結果。
>>> bool(NotImplemented) True >>> NotImplemented = False >>> >>> bool(NotImplemented) False
4. NotImplemented多用於一些二元特殊方法(比如eq、lt等)中做為返回值,表明沒有實現方法,而Python在結果返回NotImplemented時會聰明的交換二個參數進行另外的嘗試。
>>> class A(object): def init(self,name,value): self.name = name self.value = value def eq(self,other): print('self:',self.name,self.value) print('other:',other.name,other.value) return self.value == other.value #判断2个对象的value值是否相等 >>> a1 = A('Tom',1) >>> a2 = A('Jay',1) >>> a1 == a2 self: Tom 1 other: Jay 1 True
>>> class A(object): def init(self,name,value): self.name = name self.value = value def eq(self,other): print('self:',self.name,self.value) print('other:',other.name,other.value) return NotImplemented >>> a1 = A('Tom',1) >>> a2 = A('Jay',1) >>> a1 == a2 self: Tom 1 other: Jay 1 self: Jay 1 other: Tom 1 False
當執行a1==a2(即呼叫eq(a1,a2)),傳回NotImplemented時,Python會自動交換參數再次呼叫eq(a2,a1)。
五. Ellipsis
1. Ellipsis是ellipsis類型的常數,它和…是等價的。
>>> Ellipsis Ellipsis >>> type(Ellipsis) <class 'ellipsis'> >>> ... Ellipsis >>> ... == Ellipsis True
2. 使用bool()函數進行測試可以發現,Ellipsis是一個真值。
>>> bool(Ellipsis) True
3. Ellipsis不是一個絕對意義上的常數,因為他可以被賦值卻不會拋出語法錯誤,我們也不應該去對其賦值,否則會影響程式的執行結果。
>>> bool(Ellipsis) True >>> Ellipsis = False >>> bool(Ellipsis) False
4. Ellipsis多用於表示循環的資料結構。
>>> a = [1,2,3,4] >>> a.append(a) >>> a [1, 2, 3, 4, [...]] >>> a [1, 2, 3, 4, [...]] >>> len(a) >>> a[4] [1, 2, 3, 4, [...]] >>>
#六. debug
#1. debug是一個bool型別的常數。
>>> debug True >>> type(debug) <class 'bool'>
2. 對常數debug進行任何賦值運算都會拋出語法錯誤。
>>> debug = False SyntaxError: assignment to keyword
3. 如果Python沒有使用-O選項啟動,此常數為真值,否則是假值。
總結
#以上是Python中內建常數的深入理解的詳細內容。更多資訊請關注PHP中文網其他相關文章!