gpt4 book ai didi

Python:While 循环内的多个 While 循环

转载 作者:太空宇宙 更新时间:2023-11-03 15:40:25 24 4
gpt4 key购买 nike

'''您好,我正在尝试找出为什么 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?")

最佳答案

首先,执行 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?")

关于Python:While 循环内的多个 While 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42184131/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com