laixintao/python-parallel-programming-cookbook-cn

ch 1.7最后定义类

cccrick opened this issue · 0 comments

class Complex:
... def init(self, realpart, imagpart):
... self.r = realpart
... self.i = imagpart
这里的def需要缩进