age = 26 count = 0 while count < 4: intput = int(input("请猜猜我的年龄:")) if intput < age: print ("输入过小,请重新输入") elif intput > age: print ("输入过大,请重新输入") elif intput == age: print ("答案正确,游戏退出") break count = count + 1 print count else: print ("输入错误超过3次,游戏退出")
위 내용은 Python 문법 연습-while 루프 내용입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!