在 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"
这可能吗?如果没有,有没有办法完成同样的事情?