class Student(object): def __init__(self): pass def getList(self): return [1,2,3] class test(): def res(self,ins): return ins.getList() o = test().res(Student()) print(o) # [1, 2, 3]