用PythonCharm編寫一個猜年齡的小遊戲!!!(10分鐘)

2020-10-19 12:00:18
import random #把random模組呼叫出來
age = random.randint(10,25)#用rand.randint製造一個亂數表
count = 0
while count < 3:#共有三次機會
    n = int(input('Guess the age:'))#輸入使用者通過鍵盤敲打的資料
    if n > age:
        print('Try smaller,你還有%s次機會'%(2-count))
        count += 1
    elif n < age:
        print('Try bigger,你還有%s次機會'%(2 - count))
        count += 1
    else:
        print('Yes,you get it')
        break#結束迴圈
print(age)