他のファイルの関数を呼び出す
利用される側のコード(hello.py)
def say(): print('hello')
利用する側のコード
import hello hello.say()