python類型比較的3種方式

來源:互聯網
上載者:User

通過types模組的類成員來判斷,其實所有python中的類型都是這個types模組中類型的執行個體。

import types 
type(x) is types.IntType # 判斷是否int 類型 
type(x) is types.StringType #是否string類型 
type(x) is types.InstanceType  #是否是自訂的執行個體對象, isinstance函數不支援比較這個

通過已知類型比較,因為python中所有相同類型的對象他們所引用的類型都是同一個,所以可以通過如下的方式對比:

type(x) == types(1) # 判斷是否int 類型 
type(x) == type('a') #是否string類型

type(x) is types(1) # 判斷是否int 類型   
type(x) is type('a') #是否string類型

使用內建isinstance函數:

Python可以得到一個對象的類型 ,利用type函數:

>>>lst = [1, 2, 3]
>>>type(lst)
<type 'list'>

同樣可以利用isinstance函數,來判斷一個對象是否是一個已知的類型。其第一個參數為對象,第二個為類型名或類型名的一個列表。其傳回值為布爾型。若對象的類型與參數二的類型相同則返回True。若參數二為一個元組, 則若物件類型與元組中類型名之一相同即返回True。

>>>isinstance(lst, list)
True

>>>isinstance(lst, (int, str, list))
True

參考資料:

python核心編程

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.