# coding=utf-8
class GetMany(object):
def get(self,x,y,z):
return x,y,z
print GetMany().get("name","age",1)
C:\Python27\python.exe C:/Users/Administrator/PycharmProjects/py3project/dffclassfunc/dir001/return_many.py
('name', 'age', 1) #元组tuple
Process finished with exit code 0