gpt4 book ai didi

python - python中做一段时间程序的事情

转载 作者:行者123 更新时间:2023-12-01 05:29:26 25 4
gpt4 key购买 nike

我用 python 编写了一个程序,如下所示:

import time
y = "a"
x = 0
while x != 10 and y == "a":
y = input("What is your name? ")
time.sleep(1)
x = x + 1
if y != "a":
print("Hi " + y)
else:
print("You took too long to answer...")

我知道有一种方法可以在这个问题上完成同样的事情:Keyboard input with timeout in Python ,但我想知道为什么这不起作用。无论我等多久,它都不会超时;它只是坐在那里等待我输入一些内容。我做错了什么?我在 Win 7 上使用 python 3.3。

最佳答案

Python 中的输入被阻塞。意思是 time.sleep(1) 行和之后的所有行仅在收到输入后执行。

关于python - python中做一段时间程序的事情,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20589620/

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