After these instructions in the Python interpreter one gets a window with a plot:
from matplotlib.pyplot
import * plot([1,2,3])
show()
# other code
Unfortunately, I don't know how to continue to interactively explore the figure created by show() while the program does further calculations.
Is it possible at all? Sometimes calculations are long and it would help if they would proceed during the examination of intermediate results.