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

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

我試圖為健康欄創(chuàng)建一個 while 循環(huán),但出現(xiàn)除法錯誤

我試圖為健康欄創(chuàng)建一個 while 循環(huán),但出現(xiàn)除法錯誤

HUX布斯 2023-10-18 21:31:39
你好,所以我有一個來自較大代碼的一小段代碼,用于顯示游戲中敵人的生命值,但由于某種原因,即使我認為它應該停止,循環(huán)仍在繼續(xù),我有什么嗎失蹤或做錯了?import pygame, sysimport timeimport randomimport osimport sqlite3import os.pathdamage_done = 1random_monster_health = random.randint(7,10)alive = Trueprint (random_monster_health)while alive == True:    mob_health = random_monster_health - damage_done    print ("mob health is {}" .format(mob_health))    if mob_health != 0:        percent_damage_done = mob_health / int(random_monster_health)        how_much_health_bar = 1180 * (percent_damage_done)    else:        pass    random_monster_health = mob_health    print(random_monster_health)    if mob_health != 0:        print("the monster is still alive")        pass    else:        alive == False        print ("the monster is dead")        passprint("the loop has ended")
查看完整描述

1 回答

?
動漫人物

TA貢獻1815條經(jīng)驗 獲得超10個贊

else:

    alive == False

    print ("the monster is dead")

    pass

這部分是錯誤的。你正在alive比較False


它應該是


else:

    alive = False

    print ("the monster is dead")

旁注:您不需要在每個 if 語句中使用 pass。


查看完整回答
反對 回復 2023-10-18
  • 1 回答
  • 0 關注
  • 134 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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