2

我想创建一个 python 脚本,它从一个线程打印出消息,同时还在等待你在另一个线程上输入。这可能吗?如果是这样,怎么办?

系统:Windows 7

语言:Python 2.7

我试过这个(从另一个问题修改):

import threading
import time

def message_loop():
    while True:
        time.sleep(1)
        print "Hello World"

thread = threading.Thread(target = message_loop)
thread.start()

while True:
    input = raw_input("Prompt> ")

但是会发生什么:程序等到我完成输入后再输出Hello World

4

2 回答 2

2

这是绝对可能的。如果您有一个打印输出的函数(我们称之为它),您可以使用该模块print_output在不同的线程中启动它:threading

>>> import threading
>>> my_thread = threading.Thread(target=print_output)
>>> my_thread.start()

您现在应该开始获取输出。然后,您可以在主线程上运行输入位。您也可以在新线程中运行它,但在主线程中运行输入有一些优势。

于 2013-07-27T04:25:25.050 回答
2

这对我有用。代码在您输入“q”之前打印消息

import threading
import time


def run_thread():
    while True:
        print('thread running')
        time.sleep(2)
        global stop_threads
        if stop_threads:
            break


stop_threads = False
t1 = threading.Thread(target=run_thread)
t1.start()
time.sleep(0.5)

q = ''
while q != 'q':
    q = input()

stop_threads = True
t1.join()
print('finish')
于 2019-05-13T18:33:04.710 回答