def SBS():
    print("This is SBS")
    print("Please choose the menu you want")
    menu_sbs = input("입력 : ")
    menu_list = []
    while 1:
        if menu_sbs == '1':
            print("잠시만 기다려주세요..")
            time.sleep(0.5)
            sbs_first = sbs_news()
            menu_list.append(sbs_first)

        elif menu_sbs == '2':
            print("Back to the Future")
            from SubMenu.broadcaster import printFourthList
            sbs_second = printFourthList()
            menu_list.append(sbs_second)
            break

        else:
            print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)")
            break
Exemple #2
0
def KBSWorld():
    print("This is KBSWorld")
    print("Please choose the menu you want")
    menu_kbsworld = input("입력 : ")
    menu_list = []
    while 1:
        if menu_kbsworld == '1':
            print("잠시만 기다려주세요..")
            time.sleep(0.5)
            kbsworld_first = kbsworld_news()
            menu_list.append(kbsworld_first)

        elif menu_kbsworld == '2':
            print("Back to the Future")
            from SubMenu.broadcaster import printFourthList
            kbsworld_second = printFourthList()
            menu_list.append(kbsworld_second)
            break

        else:
            print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)")
            break
def YonHab():
    print("This is Yonhab")
    print("Please choose the menu you want")
    menu_yonhab = input("입력 : ")
    menu_list = []
    while 1:
        if menu_yonhab == '1':
            print("잠시만 기다려주세요..")
            time.sleep(0.5)
            yonhab_first = yonhab_news()
            menu_list.append(yonhab_first)

        elif menu_yonhab == '2':
            print("Back to the Future")
            from SubMenu.broadcaster import printFourthList
            yonhab_second = printFourthList()
            menu_list.append(yonhab_second)
            break

        else:
            print("번호를 잘못 누르셨어요ㅠㅠ(메밀티콘)")
            break