Python:While循环中的多个循环

时间:2017-02-12 04:11:47

标签: python python-3.x while-loop nested

'''您好,我试图找出为什么我的第二个while循环,在while循环中没有在Python中执行。'' '

x = True
y = False
z = True

    while x == True

        while y == True
            print("Won't print")

        while z == True
            print("Should print, right?")

1 个答案:

答案 0 :(得分:1)

首先,执行while x == True是多余的,您可以执行while x,然后在while语句的末尾错过冒号。你还必须尊重python中的缩进。试试这个:

x = True
y = False
z = True

while x:
    while y:
        print("Won't print")

    while z:
        print("Should print, right?")