from main_func import * say_hi() say_hi_to('철수')
def say_hi(): print('안녕!') def say_hi_to(name): print(f'{name}님 안녕하세요')