s.python.org
--
Ned Deily,
n...@acm.org
--
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more
Hi,
I'm trying to sort out interactive use with standard python but am having
problems.
If I do:
import matplotlib
matplotlib.use("TkAgg")
matplotlib.interactive(True)
import pylab
pylab.ion()
pylab.plot([1,2,3,4])
Then I would expect a plot to appear. But it doesn't. I then have to call:
pyla