創(chuàng)新互聯(lián)www.cdcxhl.cn八線動(dòng)態(tài)BGP香港云服務(wù)器提供商,新人活動(dòng)買多久送多久,劃算不套路!
創(chuàng)新互聯(lián)公司主要從事網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)運(yùn)河,十多年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18982081108這篇文章將為大家詳細(xì)講解有關(guān)python判斷值是哪種數(shù)據(jù)類型的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
python判斷值的類型的方法是:1、利用type庫(kù)結(jié)合python內(nèi)置的type函數(shù)判斷值的數(shù)據(jù)類型;2、使用python內(nèi)置函數(shù)isinstance判斷值的數(shù)據(jù)類型。
import types type(x) is types.IntType # 判斷是否int 類型 type(x) is types.StringType #是否string類型
超級(jí)惡心的模式,不用記住types.StringType
import types type(x) == types(1) # 判斷是否int 類型 type(x) == type('a') #是否string類型
使用內(nèi)嵌函數(shù):
isinstance ( object, classinfo )
Return true if the object argument is an instance of the classinfo argument, or of a (direct or indirect) subclass thereof. Also return true if classinfo is a type object and object is an object of that type. If object is not a class instance or an object of the given type, the function always returns false. If classinfo is neither a class object nor a type object, it may be a tuple of class or type objects, or may recursively contain other such tuples (other sequence types are not accepted). If classinfo is not a class, type, or tuple of classes, types, and such tuples, a TypeError exception is raised. Changed in version 2.2: Support for a tuple of type information was added.
Python可以得到一個(gè)對(duì)象的類型 ,利用type函數(shù):
>>>lst = [1, 2, 3] >>>type(lst) <type 'list'>
不僅如此,還可以利用isinstance函數(shù),來判斷一個(gè)對(duì)象是否是一個(gè)已知的類型。
isinstance說明如下:
isinstance(object, class-or-type-or-tuple) -> bool Return whether an object is an instance of a class or of a subclass thereof. With a type as second argument, return whether that is the object's type. The form using a tuple, isinstance(x, (A, B, ...)), is a shortcut for isinstance(x, A) or isinstance(x, B) or ... (etc.).
其第一個(gè)參數(shù)為對(duì)象,第二個(gè)為類型名或類型名的一個(gè)列表。其返回值為布爾型。若對(duì)象的類型與參數(shù)二的類型相同則返回True。若參數(shù)二為一個(gè)元組,則若對(duì)象類型與元組中類型名之一相同即返回True。
>>>isinstance(lst, list) Trueisinstance(lst, (int, str, list)) True >>>isinstance(lst, (int, str, list)) True
關(guān)于python判斷值是哪種數(shù)據(jù)類型的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
新聞名稱:python判斷值是哪種數(shù)據(jù)類型的方法-創(chuàng)新互聯(lián)
路徑分享:http://aaarwkj.com/article28/codgjp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營(yíng)銷推廣、網(wǎng)站導(dǎo)航、搜索引擎優(yōu)化、靜態(tài)網(wǎng)站、Google、用戶體驗(yàn)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容