import matplotlib.pylab as plt plt.figure(1) plt.ion() plt.clf() for ii in range(100): plt.plot(ii, ii, 'bo') # plt.draw() plt.show() plt.pause(.1)