gpt4 book ai didi

python - 在Python中的独立(非阻塞)线程中检测按键

转载 作者:行者123 更新时间:2023-12-01 02:22:37 28 4
gpt4 key购买 nike

在Python脚本中,我想连续调用一个函数,同时监听用户按下ESC键,然后退出程序。

这是我当前的代码:

import threading
import msvcrt

def wait_for_esc():
while True:
key = ord(msvcrt.getch())
if key == 27:
print("ESC")
exit(0)

def do_something():
while True:
call_function()

thread_1 = threading.Thread(name="wait_for_esc", target=wait_for_esc())
thread_2 = threading.Thread(name="do_something", target=do_something())

thread_1.start()
thread_2.start()

但是,似乎 thread_1 会阻塞 thread_2,直到按下任意键为止。

使两个线程彼此独立运行的可能解决方案是什么?

最佳答案

当你将目标任务传递给线程时,你需要传递函数对象——而不是调用函数。您需要删除函数名称末尾的括号。

thread_1 = threading.Thread(name="wait_for_esc", target=wait_for_esc)
thread_2 = threading.Thread(name="do_something", target=do_something)

它应该可以工作。

关于python - 在Python中的独立(非阻塞)线程中检测按键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47793417/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com