#!/usr/bin/env python3
#!-*- coding:utf8 -*-
import sys

def hi():
    print("hello world")

getattr(sys.modules[__name__], "hi")()