我正在努力做到这一点,以便我可以运行一个无限循环来询问用户输入以及运行一个 matplotlib 简单图。有什么建议可以如何工作吗?目前我有我的代码:
def createGraph():
fig = plt.figure()
fig.suptitle('A Graph ', fontsize=14, fontweight='bold')
ax = fig.add_subplot(111)
fig.subplots_adjust(top=.9)
ax.set_xlabel('X Score')
ax.set_ylabel('Y Score')
plt.plot([1,2,3,4,5,6,7],[1,3,3,4,5,6,7], 'ro')
plt.show()
def sub_proc(q,fileno):
sys.stdin = os.fdopen(fileno) #open stdin in this process
some_str = ""
while True:
some_str = raw_input("> ")
if some_str.lower() == "quit":
return
q.put_nowait(some_str)
if __name__ == "__main__":
q = Queue()
fn = sys.stdin.fileno() #get original file descriptor
qproc = Process(target=sub_proc, args=(q,fn))
qproc.start()
qproc.join()
zproc = Process(target=createGraph)
zproc.start()
zproc.join()
如您所见,我试图让进程让它工作,所以代码并行工作。最终,我想得到它,以便用户可以显示图表,同时能够在控制台中输入。谢谢你的帮助!!