0

在 python 中,是否可以在脚本处于睡眠状态时运行代码或执行操作time.sleep()?我想要做的是打印一条消息并从用户那里收集输入,直到消息打印后 10 秒。我最初虽然我能做到

print "You have ten seconds to answer the question."
print "The question"
time.sleep(10) and input() simultaneously
print "You are out of time"

这可能吗?如果没有,有没有办法完成同样的事情?

4

1 回答 1

1

睡觉的时候什么都做不了。查找 Unix/Linux 上的 alarm(2) 系统调用是否会在一段时间后中断。

于 2013-05-05T19:59:34.737 回答