class Test():
def __init__(self,s,i):
self.s = s
self.i = i
def excute(self):
self.s+=" world"
self.i+=1
print self.s
print self.i
t = Test("hello",2016)
t.excute()class Test():
def __init__(self,s,i):