Python If Statement中的函數未運行,盡管滿足條件

我目前正試圖為我的一個文本冒險編程基本的位置移動,不管我做什么,如果語句代碼永遠不會運行,我會執行0.1位置。我嘗試過在position變量傳遞到0.1之前編輯它,但是在函數運行時什么也沒有發生。位置0.0代碼運行正常,但不返回0.1的值,而是返回“NONE”。(我通過函數中的print語句發現了這個問題,它給出的結果是“NONE”)是否有什么我覺得非常明顯的東西我遺漏了。重現錯誤的最小代碼如下:

def main():  
    print('Time to test out movement.')
    Position = 0.0
    while Position != 9.9:
        Position = Movement(Position)
        
    
    print('Test concluded.')

def Movement(Position):
    if Position == 0.0:
        print('You have entered this old and decrepid dungeon in hopes of finding some kind of riches.')
        print('What would you like to do?')
        print('1-Move north to room 0.1')
        PChoice = int(input())
        if PChoice == 1:
            return 0.1
        
    if Position == 0.1:
        print('Movement successful.')
        

if __name__ == '__main__': main()
? 最佳回答:

我想你想在position變為0.1時停止程序,同時你的代碼正在運行一個infinte循環,因為它不處理position value不為0.0或0.1的情況:嘗試以下代碼:

def main():
        print('Time to test out movement.')
        Position = 0.0
        while Position != 9.9:
            Position = Movement(Position)

        print('Test concluded.')

def Movement(Position):
    if Position == 0.0:
        print('You have entered this old and decrepid dungeon in hopes of finding some kind of riches.')
        print('What would you like to do?')
        print('1-Move north to room 0.1')
        PChoice = float(input())
        #print(PChoice)
        if PChoice == 1:
            return 0.1
        else:
            return PChoice

    elif Position == 0.1:
        print('Movement successful.')
        return 9.9
    else:
        PChoice = float(input())
        return PChoice

if __name__ == '__main__':
    main()

  
主站蜘蛛池模板: 久久99国产一区二区三区| 中文字幕在线无码一区| 国产一区韩国女主播| 精品乱人伦一区二区三区| 欧美日韩一区二区成人午夜电影 | 亚洲AⅤ无码一区二区三区在线| 亚洲色精品aⅴ一区区三区| 一区二区国产在线播放| 国产一区二区三区播放| 国产色欲AV一区二区三区| 无码精品一区二区三区| 国产精品综合AV一区二区国产馆| 日韩一区二区电影| 日韩精品成人一区二区三区| 91麻豆精品国产自产在线观看一区 | 区三区激情福利综合中文字幕在线一区| 亚洲第一区二区快射影院| 国产精品合集一区二区三区| 日韩爆乳一区二区无码| 精品性影院一区二区三区内射 | 无码人妻精品一区二区三18禁| 国模吧无码一区二区三区| 久久一区二区三区免费| 中文字幕无码一区二区三区本日| 一区二区免费在线观看| 中文字幕一区二区三区免费视频 | 日韩精品一区二区三区视频| 日韩三级一区二区| jazzjazz国产精品一区二区| 国产精品一区二区久久精品无码| 国产精品被窝福利一区 | 蜜臀AV免费一区二区三区| 久久久久人妻一区二区三区vr| 91福利国产在线观一区二区| 亚洲sm另类一区二区三区| 国产成人av一区二区三区不卡| 国产一区中文字幕在线观看| 97精品国产福利一区二区三区| 秋霞午夜一区二区| 免费无码A片一区二三区| 青娱乐国产官网极品一区|