使用原始输入进行限时用户输入
在 Python 中,raw_input() 函数可用于提示用户输入。然而,在某些情况下,您可能希望限制用户输入的等待时间,以避免无限期地拖延程序。
使用线程定时器的解决方案
对于跨平台和特定于 Windows 的解决方案,您可以利用线程模块中的 threading.Timer。导入必要的模块:
import thread import threading
定义一个名为 raw_input_with_timeout 的函数:
def raw_input_with_timeout(prompt, timeout=30.0): print(prompt, end=' ') timer = threading.Timer(timeout, thread.interrupt_main) astring = None try: timer.start() astring = input(prompt) except KeyboardInterrupt: pass timer.cancel() return astring
此函数打印提示,启动计时器,并使用 input 提示用户输入。如果用户输入的时间超过指定的超时时间,计时器将中断主线程,导致引发 KeyboardInterrupt 异常。定时器被取消,以防止进一步中断。
如果输入超时,将返回 None。如果用户在超时之前输入,它将返回输入的字符串。
注意:
以上是如何使用'raw_input()”在Python中实现限时用户输入?的详细内容。更多信息请关注PHP中文网其他相关文章!