python语言基础(使用type函数创建带有属性的类)
Posted mylove-821717420
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python语言基础(使用type函数创建带有属性的类)相关的知识,希望对你有一定的参考价值。
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
以上是关于python语言基础(使用type函数创建带有属性的类)的主要内容,如果未能解决你的问题,请参考以下文章