51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

metaclass

Python MetaClass

Python MetaClass

厉飞雨 阅读(6) 评论(0) 赞(1)

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