object()函數(shù)返回一個無特征的對象,該對象是所有類的基礎(chǔ)。
object()的語法為:
o = object()
object()函數(shù)不接受任何參數(shù)。
該object()函數(shù)返回一個無特征的對象。
test = object() print(type(test)) print(dir(test))
輸出結(jié)果
<class 'object'> ['__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__']
在這里,創(chuàng)建了一個對象test。
在程序中,我們使用type()獲取對象的類型。
同樣,我們使用dir()獲取所有屬性。這些屬性(屬性和方法)是所有Python類的實(shí)例共有的。