猜字游游戏,while执行10次(Python)
生活随笔
收集整理的這篇文章主要介紹了
猜字游游戏,while执行10次(Python)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
猜字游游戲,執行10次
????while 條件:
????????滿足條件執行的語句
????else:
????????不滿足條件執行的語句
??說明:
????else子句可以省略。
在循環體內用break終止循環時,else子句不執行。
import random random_number = random.randint(1,100) count = 0 while count < 10: #(0-9)count += 1num = int(input("第"+str(count)+"次猜:"))if num > random_number:print("猜大了")elif num < random_number:print("猜小了")else:print("猜對了")break #猜對了就結束 else: #不滿足while條件print("沒機會了")?
總結
以上是生活随笔為你收集整理的猜字游游戏,while执行10次(Python)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 计算商品价格找零(Python)
- 下一篇: 小球弹起次数及高度(python)