1. 程式人生 > >python實現猜年齡遊戲

python實現猜年齡遊戲

很簡單的小遊戲;要求是使用者自己定義一個年齡,可以在鍵盤上輸入,然後猜測這個年齡,如果小於就提示輸入過小,如果大於就提示大於,直到輸入正確的年齡,就會自己退出
boy_age = input(‘please input your want to guess age number’)
print(‘please guess the boy age.and i will return your true or false’)
while True:
guess_age = input(‘your guess age is:’)
if int(guess_age) < int(boy_age):
print(‘too low’)
elif int(guess_age) > int(boy_age):
print(‘too heigh’)
else:
print(‘your guess is true’)
break