码迷,mamicode.com
首页 > 其他好文 > 详细

用type方法创建类

时间:2018-05-13 20:23:27      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:方法   int   print   zhang   pre   zha   init   %s   def   

def __init__(self,name,age):
self.name=name
self.age=age

def hello(self):
print (‘%s is saying hello...‘ %self.name)

Foo=type(‘Foo‘,(object,),{‘hello‘:hello,‘__init__‘:__init__})

f=Foo(‘zhang‘,22)
print (f.name)
print (f.age)
f.hello()

用type方法创建类

标签:方法   int   print   zhang   pre   zha   init   %s   def   

原文地址:https://www.cnblogs.com/zhangtianxia/p/9033110.html

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