您好,登錄后才能下訂單哦!
這篇文章主要為大家詳細介紹了python中的type函數的用法,文中示例代碼簡明扼要容易理解,零基礎也能參考此文章,感興趣的小伙伴們可以參考一下。
type()是一個內建的獲取變量類型的函數。
type()函數有兩個用法,當只有一個參數的時候,返回對象的類型。當有三個參數的時候返回一個類對象。
語法:
type(object) type(name, bases, dict)
具體用法:
一個參數
type(object)
返回一個對象的類型,如:
In [1]: a = 10 In [2]: type(a) Out[2]: int
三個參數
tpye(name, bases, dict)
name 類名
bases 父類的元組
dict 類的屬性方法和值組成的鍵值對
返回一個類對象:
# 實例方法 def instancetest(self): print("this is a instance method") # 類方法 @classmethod def classtest(cls): print("this is a class method") # 靜態方法 @staticmethod def statictest(): print("this is a static method") # 創建類 test_property = {"name": "tom", "instancetest": instancetest, "classtest": classtest, "statictest": statictest} Test = type("Test", (), test_property) # 創建對象 test = Test() # 調用方法 print(test.name) test.instancetest() test.classtest() test.statictest()
輸出結果:
tom this is a instance method this is a class method this is a static method
關于python中的type函數的用法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。