Python教程

python while循环简单例子

本文主要是介绍python while循环简单例子,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
i = 1
while True:
    while i <= 3:
        age = int(input("input yout guess age:"))
        if age == 22:
            print("yes!")
        elif age < 22:
            print("no,your guess little!")
        elif age > 22:
            print("no,your guess old!")
        else:
            print("press error!")
        i += 1
    print("you are pig!")
    j = input("continue to guess? >: yes / no")
    if j == "yes":
        i = 1
        print(end = "")
    elif j == "no":
        break
    else:
        print("press error!")

这篇关于python while循环简单例子的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!