python中 类
class 类名:
def __init__(self):
这__init__ 叫构造方法。在执行obj=类名() 时自动调用,后面必须是类名,不能是类名.方法名
若init后括号后再加有参数则,在调用是也必须加入参数