目录
- 6.1. __init__
class MyClass: """A simple example class""" i = 12345 def f(self): return 'hello world' x = MyClass()
6.1. __init__
def __init__(self): self.data = []
>>> class Complex: ... def __init__(self, realpart, imagpart): ... self.r = realpart ... self.i = imagpart ... >>> x = Complex(3.0, -4.5) >>> x.r, x.i
原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。