def SeoulEconomy(): print("This is SeoulEconomy") print("Please choose the menu you want") menu_Seoul = input("입력 : ") menu_list = [] while 1: if menu_Seoul == '1': print("잠시만 기다려주세요..") time.sleep(0.5) seoul_first = seoul_news() menu_list.append(seoul_first) elif menu_Seoul == '2': print("Back to the Future") from SubMenu.News import printSecondList seoul_second = printSecondList() menu_list.append(seoul_second) break else: print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)")
def MoneyToday(): print("This is MoneyToday") print("Please choose the menu you want") menu_money = input("입력 : ") menu_list = [] while 1: if menu_money == '1': print("잠시만 기다려주세요..") time.sleep(0.5) money_first = money_news() menu_list.append(money_first) elif menu_money == '2': print("Back to the Future") from SubMenu.News import printSecondList money_second = printSecondList() menu_list.append(money_second) break else: print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)")
def ZidnetKorea(): print("This is ZidnetKorea") print("Please choose the menu you want") menu_zidnet = input("입력 : ") menu_list = [] while 1: if menu_zidnet == '1': print("잠시만 기다려주세요..") time.sleep(0.5) zidnet_first = zidnet_news() menu_list.append(zidnet_first) elif menu_zidnet == '2': print("Back to the Future") from SubMenu.News import printSecondList zidnet_second = printSecondList() menu_list.append(zidnet_second) break else: print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)")