#!/usr/bin/python from test.example import sayHello sayHello()
#!/usr/bin/python import test.example as tmp tmp.sayHello()
#!/usr/bin/python from test import example example.sayHello()