游戏规则: 允许用户最多尝试3次 每尝试3次后,如果还没猜对,就问用户是否还想继续玩,如果回答Y或y, 就继续让其猜3次,以此往复,如果回答N或n,就退出程序 如何猜对了,就直接退出 age= count=True while count: ): guess_age=int(input('你猜我的年龄是多大:')) if guess_age < age: print('猜小了,往大里猜') elif guess_age > age: print('猜大了,往小里猜') else: print(…