专注刺猬

文章
5
资源
0
加入时间
3年0月21天

python学习笔记7-符合python风格的对象

1.例from array import arrayimport mathclass Vector2d:typecode = 'd'#类属性 def __init__(self, x, y): self.x = float(x) self.y = float(y)def __iter__(self):# 将实例变为可迭代的对象 以实现拆包 调用生成器 return (i for i in (self.x, self.y)) # return (self.x, self.y)def