#!/usr/bin/env python import hello_module as h h.hello(2)
#!/usr/bin/env python import hello_module hello_module.hello(2)
#!/usr/bin/env python from hello_module import hello hello(2)
# 测试导入一个自定义模块 import hello_module hello_module.hello(11)
#!/usr/bin/python3 import hello_module as h h.hello()