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

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

Python return 在上一個函數(shù)中觸發(fā) else

Python return 在上一個函數(shù)中觸發(fā) else

www說 2023-03-16 16:42:31
我試圖在 python 中制作一個簡單的基于文本的冒險游戲,并且遇到了一個小錯誤,即在我不希望它調(diào)用時調(diào)用了 else 命令。以下是我的代碼中的一個小示例。## inventory var ## inv=["torch"] ## inventory function ## def ichk():       print(f" You are carrying{inv}")       return##First room, links to a3##    def a2():        move=input("placeholder text.. You notice an exit to your 'east': ")    if move==("e"):            print("You exit to the east")            a3()    if move==("i"):            ichk()    if move==("q"):            print("You find nothing of value")            a2()    else:            print("You can't move in that direction")            a2()            當(dāng)函數(shù) ichk() 被觸發(fā)時(通過用戶輸入“i”),庫存被打印,然而在返回到函數(shù) a2() 的開頭之前,else 打印語句也被打印。我是 python 的新手,所以我知道構(gòu)造的參數(shù)可能不是高效/有效的編碼,但我不確定為什么會觸發(fā)它。
查看完整描述

2 回答

?
翻閱古今

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

當(dāng)你像那樣鏈接它們時你需要使用elif語句,否則輸入'i',if你擁有的第三條語句將為假并運行相關(guān)else語句:


## inventory var ##

 inv=["torch"] 



## inventory function ##

 def ichk():

       print(f" You are carrying{inv}")

       return




##First room, links to a3##


    def a2():

    

    move=input("placeholder text.. You notice an exit to your 'east': ")


    if move==("e"):

            print("You exit to the east")

            a3()

    elif move==("i"):

            ichk()


    elif move==("q"):

            print("You find nothing of value")

            a2()

    else:

            print("You can't move in that direction")

            a2()


查看完整回答
反對 回復(fù) 2023-03-16
?
犯罪嫌疑人X

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

在Python中,如果有多個條件語句,需要寫成:if,elif,elif,elif,....,else


## inventory var ##

 inv=["torch"] 



## inventory function ##

 def ichk():

       print(f" You are carrying{inv}")

       return




##First room, links to a3##


    def a2():

    

    move=input("placeholder text.. You notice an exit to your 'east': ")


    if move==("e"):

            print("You exit to the east")

            a3()

    elif move==("i"):

            ichk()


    elif move==("q"):

            print("You find nothing of value")

            a2()

    else:

            print("You can't move in that direction")

            a2()


查看完整回答
反對 回復(fù) 2023-03-16
  • 2 回答
  • 0 關(guān)注
  • 112 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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