python-small-examples/md/43.md at master · data-python/python-small-examples

Skip to content

Navigation Menu

Sign in

Appearance settings

Latest commit

File metadata and controls

16 lines (12 loc) · 184 Bytes

@author jackzhenguo
@desc 
@date 2019/3/15

43 所有对象之根

object 是所有类的基类

In [1]: o = object()

In [2]: type(o)
Out[2]: object