python裡怎麼查看資料類型?
python裡可以透過type()函數來檢視資料型態。
Python 內建函數 Python 內建函數
Python type() 函數如果你只有第一個參數則傳回物件的類型,三個參數會傳回新的類型物件。
isinstance() 与 type() 区别: type() 不会认为子类是一种父类类型,不考虑继承关系。 isinstance() 会认为子类是一种父类类型,考虑继承关系。
如果要判斷兩個類型是否相同建議使用 isinstance()。
以下是 type() 方法的語法:
type(object) type(name, bases, dict)
參數
name:類別的名稱。
bases:基底類別的元組。
dict:字典,類別內定義的命名空間變數。
傳回值
一個參數傳回物件類型, 三個參數,傳回新的類型物件。
實例
以下展示了使用type 函數的實例:
# 一个参数实例 >>> type(1) <type 'int'> >>> type('school') <type 'str'> >>> type([2]) <type 'list'> >>> type({0:'zero'}) <type 'dict'> >>> x = 1 >>> type( x ) == int # 判断类型是否相等 True # 三个参数 >>> class X(object): ... a = 1 ... >>> X = type('X', (object,), dict(a=1)) # 产生一个新的类型 X >>> X <class '__main__.X'>
type() 與isinstance()區別:
class A: pass class B(A): pass isinstance(A(), A) # returns True type(A()) == A # returns True isinstance(B(), A) # returns True type(B()) == A # returns False
推薦:《python教程》
以上是python裡怎麼查看資料類型的詳細內容。更多資訊請關注PHP中文網其他相關文章!