gpt4 book ai didi

Python - 用户输入以确定 while 循环中的条件

转载 作者:行者123 更新时间:2023-12-01 04:03:55 26 4
gpt4 key购买 nike

为什么下面的代码会产生无限循环?如果我将 y 的值硬编码为等于 10,它不会永远持续下去,但如果我通过用户输入输入 10,它就会永远持续下去。

x = 0
y = raw_input("Enter a Number: ")

while x <= y:
x = x + 1
if x %2 == 0:
print x
else:
print "odd"

最佳答案

您可能想要将 y 值(现在是字符串)转换为数字。

例如:

y = int(raw_input("Enter a number: "))

关于Python - 用户输入以确定 while 循环中的条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35995118/

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