用type方法创建类
Posted Python从入门到放弃第一集
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用type方法创建类相关的知识,希望对你有一定的参考价值。
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方法创建类的主要内容,如果未能解决你的问题,请参考以下文章