#!usr/local/bin/python3 def test(): print('Hello World!') if __name__ == '__main__': test() print('module name:{}'.format(__name__)) #実行したモジュール名を表示する