__new__.py

Posted mydba-j

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了__new__.py相关的知识,希望对你有一定的参考价值。

def func(self):
print(‘hello %s‘ %self.name)
def __init__(self,name,age):
self.name = name
self.age = age

Foo = type(‘Foo‘, (object,), ‘talk‘: func,
‘__init__‘:__init__)
f = Foo("Chrn",22)
f.talk()
print(type(Foo))

以上是关于__new__.py的主要内容,如果未能解决你的问题,请参考以下文章