class World: def com(self, x): __import__(x) class Hello: def __matmul__(self, x): x('__hello__') hello, world = Hello(), World() hello@world.com
class World: def com(self, x): __import__(x) class Hello: def __matmul__(self, x): x('__hello__') hello, world = Hello(), World() hello@world.com