Discuss / Python / 打卡

打卡

Topic source

Solo_Travel

#1 Created at ... [Delete] [Delete and Lock User]

class Chain(): def init(self,path=''): self.path=path def getattr(self,path): return Chain('%s/%s'%(self.path,path)) def call(self,path): return Chain('%s:%s'%(self.path,path)) def str(self): return self.path repr=str


  • 1

Reply