def ChosunBiz(): print("this is chosunbiz") print("Please choose the menu you want") menu_chosun = input("입력 : ") menu_list = [] while 1: if menu_chosun == '1': print("잠시만 기다려주세요..") time.sleep(0.5) chosun_first = chosun_news() menu_list.append(chosun_first) elif menu_chosun == '2': print("Back to the Future") from SubMenu.Economy import printSecondList chosun_second = printSecondList() menu_list.append(chosun_second) break else: print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)") break
def EDaily(): print("This is EDaily") print("Please choose the menu you want") menu_edaily = input("입력 : ") menu_list = [] while 1: if menu_edaily == '1': print("잠시만 기다려주세요..") time.sleep(0.5) edaily_first = edaily_news() menu_list.append(edaily_first) elif menu_edaily == '2': print("Back to the Future") from SubMenu.Economy import printSecondList edaily_second = printSecondList() menu_list.append(edaily_second) break else: print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)") break
def Herald(): print("This is Herald") print("Please choose the menu you want") menu_herald = input("입력 : ") menu_list = [] while 1: if menu_herald == '1': print("잠시만 기다려주세요..") time.sleep(0.5) herald_first = herald_news() menu_list.append(herald_first) elif menu_herald == '2': print("Back to the Future") from SubMenu.Economy import printSecondList herald_second = printSecondList() menu_list.append(herald_second) break else: print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)") break
def Asia(): print("This is Aisan Economy") print("Please choose the menu you want") menu_asia = input("입력 : ") menu_list = [] while 1: if menu_asia == '1': print("잠시만 기다려주세요..") time.sleep(0.5) aisa_first = asia_news() menu_list.append(aisa_first) elif menu_asia == '2': print("Back to the Future") from SubMenu.Economy import printSecondList asia_second = printSecondList() menu_list.append(asia_second) break else: print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)") break
def FinancialNews(): print("This is FinancialNews") print("Please choose the menu you want") menu_financial = input("입력 : ") menu_list = [] while 1: if menu_financial == '1': print("잠시만 기다려주세요..") time.sleep(0.5) financial_first = financial_news() menu_list.append(financial_first) elif menu_financial == '2': print("Back to the Future") from SubMenu.Economy import printSecondList financial_second = printSecondList() menu_list.append(financial_second) break else: print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)") break