如果有人花了很长时间才回答 Python 上的输入,有没有办法让事情发生?
例如,如果您花费超过 10 秒的时间来回答输入,程序将打印文本或执行某行代码。您仍然可以回答,在您没有回答时只会打印文本,或者类似的内容。
For example if you took over 10 seconds to answer an input the program would print text or execute some line of code. You could still answer, just text would be printing while you haven't answered, or something similar to that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
线程
来实现类似的效果。这是一个非常简单的示例:两个函数将并行运行,您将看到 5 秒后打印的超时消息,与输入分开。
如果您想要更复杂,您可以保留对正在运行的线程的引用,并允许任一线程停止另一个线程(例如,如果用户输入某些内容,则取消超时)。
You can achieve something like this with
threading
. Here's a very simple example:Both functions will run in parallel, and you will see the timeout message printed after 5 seconds, separate to the input.
If you want to be more complex you can keep references to running threads and allow either thread to stop the other (e.g. cancelling the timeout if the user inputs something).