Python MetaClass
在 Python 中,我们经常使用 type 来查看对象的类型,如下: ``` def test01(): number = 100 print(type(number)) if __name__ == '__main__': test03() ``` type 除此用法之外,还可以动态创建类。所谓动态创建类指的是指在运行时通过编程...
在 Python 中,我们经常使用 type 来查看对象的类型,如下: ``` def test01(): number = 100 print(type(number)) if __name__ == '__main__': test03() ``` type 除此用法之外,还可以动态创建类。所谓动态创建类指的是指在运行时通过编程...