第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用 While 循環(huán)在 Python 中創(chuàng)建的菜單在需要時不會退出

使用 While 循環(huán)在 Python 中創(chuàng)建的菜單在需要時不會退出

慕田峪7331174 2023-10-31 19:21:21
我是 Python 新手,一直在嘗試創(chuàng)建一個簡單的菜單,當(dāng)用戶按 4 時退出程序。如果用戶立即選擇 4,則菜單可以工作,但如果用戶在按 4 之前選擇其他選項,則 while 循環(huán)不會不會中斷,菜單會繼續(xù)。有什么想法可以更改它以便菜單正確退出嗎?def main():      print('''           Welcome to Grade Central           [1] - Enter Grades           [2] - Remove Student           [3] - Student Average Grades           [4] - Exit           \n           ''')     action = int(input("What would you like to do today? \n"))     if action == 1:         print(1)     elif action == 2:         print(2)     elif action == 3:         print(3)     elif action == 4:         print("The program has been exited")     else:         print("Invalid input! Please select an option")     return actionwhile main() != 4:     main()
查看完整描述

4 回答

?
白衣非少年

TA貢獻(xiàn)1155條經(jīng)驗 獲得超0個贊

def main(): 

     print('''

           Welcome to Grade Central

           [1] - Enter Grades

           [2] - Remove Student

           [3] - Student Average Grades

           [4] - Exit

           \n

           ''')


     action = int(input("What would you like to do today? \n"))

     if action == 1:

         print(1)

     elif action == 2:

         print(2)

     elif action == 3:

         print(3)

     elif action == 4:

         print("The program has been exited")

     else:

         print("Invalid input! Please select an option")

     return action


action = main()

while action != 4:

     action = main()


查看完整回答
反對 回復(fù) 2023-10-31
?
慕容708150

TA貢獻(xiàn)1831條經(jīng)驗 獲得超4個贊

如果您在函數(shù)外部創(chuàng)建一個變量,該變量設(shè)置為從函數(shù)返回的任何內(nèi)容,并通過 while 循環(huán)檢查該變量,那么應(yīng)該可以工作。


def main():

    print('''

           Welcome to Grade Central

           [1] - Enter Grades

           [2] - Remove Student

           [3] - Student Average Grades

           [4] - Exit

           \n

           ''')


    action = int(input("What would you like to do today? \n"))

    if action == 1:

        print(1)

    elif action == 2:

        print(2)

    elif action == 3:

        print(3)

    elif action == 4:

        print("The program has been exited")

    else:

        print("Invalid input! Please select an option")

    print(action)

    return action


returned_action = 0

while returned_action != 4:

    returned_action = main()


查看完整回答
反對 回復(fù) 2023-10-31
?
FFIVE

TA貢獻(xiàn)1797條經(jīng)驗 獲得超6個贊

我建議在您的程序中進(jìn)行某種形式的輸入驗證。


def main():

    action = get_input()

    # do something with action


def get_input():

    action = 0

    while action not in range(1,5):

        try:

            action = int(input('What would you like to do today?\n'))

            if action not in range(1,5):

                print('Action not recognized.')

        except ValueError:

            print('Please enter an integer.')


    return action

這允許您檢查用戶輸入是否是整數(shù)和/或它是您處理的操作。它會不斷詢問用戶“你今天想做什么?” 直到輸入有效。您可以修改范圍以處理更多值,并且可以修改錯誤消息以顯示幫助輸出。


查看完整回答
反對 回復(fù) 2023-10-31
?
繁花不似錦

TA貢獻(xiàn)1851條經(jīng)驗 獲得超4個贊

對于每個循環(huán),您調(diào)用 main() 兩次,并且僅測試其中一個返回值。

使用這個代替:

while main() != 4:
     pass

pass 是一個不執(zhí)行任何操作的命令。


查看完整回答
反對 回復(fù) 2023-10-31
  • 4 回答
  • 0 關(guān)注
  • 191 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號