标签:blog 魔法 tom 迭代 init log elf 参数 color
在类中定义构造函数
>>> class a: def __init__(self): self.age=42 >>> f=a() >>> f.age 42 >>>
带参数,构造函数
>>> class b: def __init__(self,name): self.name1=name >>> f=b(‘tom‘) >>> f.name1 ‘tom‘ >>>
标签:blog 魔法 tom 迭代 init log elf 参数 color
原文地址:http://www.cnblogs.com/buchizaodian/p/7016496.html