1print("mod2 __name__:", __name__)
2print("in mod2")
3
4
5def foo():
6    print("mod2.foo()")
7