非阻塞输入python2.7

时间:2016-11-28 16:57:21

标签: python input user-input nonblocking

经过几个小时的挖掘试图找到一种基本的简单方法(即使在ASM中可以完成3行),这是一种非阻塞的输入方式,我不得不问某个地方。因此,如果有人有一些简单,干净的方式,我将非常乐意听到:)

1 个答案:

答案 0 :(得分:0)

为此,您需要多个线程。这是一个非常基本的例子,说明如何设置它:

import thread

def get_input(txt):
    #do stuff here

thread.start_new(get_input, (type_message_here))

#do other stuff

这允许多个事物同时运行。请参阅:

https://docs.python.org/2/library/threading.html