摘要: 定义类与其他语言一样,Python中定义类也是用class关键字来定义。class Student(Object): def __init(self,x1,x2,...): self._x1 = x1 self._x2 = x2从上述定义可以知道... 阅读全文
posted @ 2015-08-28 16:31 mlhy 阅读(164) 评论(0) 推荐(0) 编辑