Python面向对象编程¶
class ClassName(继承的类名):
def __init__(变量):
self.类内变量=变量
没有合适的继承类,就使用object类,这是所有类最终都会继承的类。创建实
2019-07-17