gpt4 book ai didi

python - Python 中使用 if/else 语句的 while 循环

转载 作者:行者123 更新时间:2023-12-01 23:44:07 25 4
gpt4 key购买 nike

所以我仍在学习Python的过程中,并且我在使用while循环时遇到了困难。我下面有一个代码示例,其中包括 while 循环以及 if 和 else 语句。我想要它做的是打印“小于 2”和“大于 4”,它确实这样做了,但它继续运行。它不会每次只打印一次,这是我希望它做的。任何帮助将不胜感激!

counter = 1
while (counter < 5):
count = counter
if count < 2:
counter = counter + 1
else:
print('Less than 2')
if count > 4:
counter = counter + 1
else:
print('Greater than 4')
counter = counter + 1

最佳答案

counter = 1 
while (counter <= 5):
if counter < 2:
print("Less than 2")
elif counter > 4:
print("Greater than 4")
counter += 1

这将执行您想要的操作(如果少于 2,则打印此内容等)

关于python - Python 中使用 if/else 语句的 while 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36843103/

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