猜年龄小游戏
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了猜年龄小游戏相关的知识,希望对你有一定的参考价值。
基本要求:
允许用户猜三次,如果没有猜对,提示用户是否继续,输入Y或y继续,输入N或n退出程序,如果猜对直接退出程序。
流程如下:
1 cj=24 2 x=0 3 while True : 4 if x >=3 : 5 p=input(‘continue please input (Y)y or N(n)>>: ‘) #提示输入Y(y)或N(n)继续或者退出 6 if p == ‘y‘ or p == ‘Y‘ : 7 x=0 8 continue 9 elif p == ‘n‘ or p == ‘N‘ : 10 exit() 11 else: 12 print(‘please input (Y)y or N(n)‘) 13 continue 14 q=int(input(‘please input age : ‘)) 15 if q ==cj : 16 print(‘so good!!!‘) 17 exit() 18 if q > cj : 19 print (‘so big!‘) 20 x+=1 21 continue 22 if q < cj : 23 x+=1 24 print(‘so small!!‘) 25 continue
以上是关于猜年龄小游戏的主要内容,如果未能解决你的问题,请参考以下文章