class test(object):
"""
get被称之为test对象的方法
def __init__(self,var1): self.var1 = var1
def get(self,a=None): return self.var1
pass
def get(a): return a