Download this file
1 2 3 4 5
from pylab import * t = arange(0.0, 5.2, 0.2) plot(t, t, 'b--', t, t**2, 'bs', t, t**3, 'g^') savefig('thirdfig') show()