我正试图写一个职能<代码>drag,可称之为drag(目标1 )to(目标2 )
。 下面的代码按我的愿望运作,但似乎使用了<代码>> /代码>。 仅仅作为集装箱可能没有必要:
def drag(source):
class Container:
def to(self, target):
print Dragging + source + to + target
return Container()
Can the above code be simplified?