python3實現猜數字遊戲

需求目標: 需求:猜數字遊戲 1: 開始遊戲產生一個1~100隨機數 2: 用戶輸入,遊戲根據輸入值提示大或者小 3: 用戶根據提示繼續輸入,知道猜中爲止 4: 若是用戶輸入錯誤,程序能夠處理異常。 代碼以下: # coding=utf-8 import random num = random.randint(0, 100) while True: try: guess
相關文章
相關標籤/搜索