欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Python语法练习--while循环

程序员文章站 2022-04-12 08:01:00
...
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)!