标签:属性 定义类 输出 pre class 语言 函数 接受 name
type接受一个字典来定义类的属性
tppe('类名',(),{"name":"张三"})
type创建有内容的类
Test01 = type("Test01",(),{"name":"hello","age":18})
print(Test01)
print(Test01())
print(Test01().name)
print(Test01().age)
# 输出结果:
# <class ‘__main__.Test01‘>
# <__main__.Test01 object at 0x00000140F8C9CA58>
# hello
# 18
标签:属性 定义类 输出 pre class 语言 函数 接受 name
原文地址:https://www.cnblogs.com/mylove-821717420/p/9591733.html