1. 程式人生 > >python_猜年齡遊戲程式碼

python_猜年齡遊戲程式碼

前提是進行三次猜年齡

案例一:

guess_age=2
#三次 判斷
num = 0
while num<3:
    #請輸入年齡
age=int(input("請輸入年齡"))
    # 判斷年齡
if guess_age>age:
        print ("你猜小了")
    elif guess_age<age:
        print ("你猜大了")
    else:
        print("恭喜你回答正確")
    num+=1
else:
    print("遊戲結束")

案例二:

#猜三次
Guese_age=3
num=3
for i in range(num): age=int(input("請輸入你猜的年齡")) #判斷 if age<Guese_age: print ("你輸入的年齡小了") elif age>Guese_age: print ("你輸入的年齡大了") else: print ("你輸入的年齡正確") break else: print("結束")

案例三:

count =0
guess_age=3
while count<3:
    age = int(input("請輸入你的年齡"
)) if age<guess_age: print("你輸入的年齡小了") elif age>guess_age: print("你輸入的年齡大了") else: print("恭喜你回答正確") break if count==2: count_confirm=input("是否繼續") if count_confirm!="m": count=-1 count+=1