几个小时后,尝试找到一种简单的方式是基本的(即使在ASM中也可以以3行进行),这是无阻止的输入方式,我不得不在某个地方问。因此,如果有人有一些简单,简洁的方法,我会很乐意听到:)
要这样做,您将需要多个线程。这是关于如何设置的一个非常基本的示例:
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