from module import a, b, c foo(a) foo(b) foo(c)
Is there a way to avoid having to call foo(x)for each imported object?
foo(x)