I would like to be able to zoom/move/scale a plot (with the supplied buttons on the figure) during having an input prompt waiting in console.
At the moment i get the plot but i can not interact with it, not even close the figure, until i satisfy the user input
def Extract(var):
do something
for i in range(var2):
Extract(i)
plt.plot(xax, yax)
usrinp=input("This plot is called: ")
Any help will be greatly apprecieated!