gpt4 book ai didi

python - 无法让 Python 选择正确的代码路径

转载 作者:行者123 更新时间:2023-12-04 00:00:39 25 4
gpt4 key购买 nike

我试图用 Python 创建一个猜谜游戏,即使我输入了正确的数字 (1),它也会继续打印出 else: 部分。我做错了什么?

print("Pick a number from one to 10 ")
guess = input("Type a number")
num = 1
if guess == 1:
print("GoodJob actual wizard.")
else:
print("Try again")

最佳答案

您永远不会指定 guess 是什么类型,您需要将其转换为 int 否则将其与任何整数比较将是 False

替换:

guess = input("Type a number")

与:

guess = int(input("Type a number"))

关于python - 无法让 Python 选择正确的代码路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62461435/

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