如果有人花了很长时间才回答 Python 上的输入,有没有办法让事情发生?

发布于 2025-01-10 17:23:04 字数 76 浏览 0 评论 0原文

例如,如果您花费超过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一袭水袖舞倾城 2025-01-17 17:23:04

您可以使用线程来实现类似的效果。这是一个非常简单的示例:

from threading import Thread
from time import sleep

def ask():
  text = input("Type something ")
  print(text)

def timeout():
  sleep(5)
  print("timed out!")

for i in (Thread(target=ask), Thread(target=timeout)):
    # Start 'ask' and 'timeout' as threads
    i.start()

两个函数将并行运行,您将看到 5 秒后打印的超时消息,与输入分开。

如果您想要更复杂,您可以保留对正在运行的线程的引用,并允许任一线程停止另一个线程(例如,如果用户输入某些内容,则取消超时)。

You can achieve something like this with threading. Here's a very simple example:

from threading import Thread
from time import sleep

def ask():
  text = input("Type something ")
  print(text)

def timeout():
  sleep(5)
  print("timed out!")

for i in (Thread(target=ask), Thread(target=timeout)):
    # Start 'ask' and 'timeout' as threads
    i.start()

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文