码迷,mamicode.com
首页 > 编程语言 > 详细

python语言基础(使用type函数创建带有属性的类)

时间:2018-09-05 15:02:34      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:属性   定义类   输出   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

python语言基础(使用type函数创建带有属性的类)

标签:属性   定义类   输出   pre   class   语言   函数   接受   name   

原文地址:https://www.cnblogs.com/mylove-821717420/p/9591733.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!