Download this file
1 2 3 4 5 6 7 8
from pylab import * plot([1,2,3]) title('hi mom') grid(True) xlabel('time') ylabel('volts') savefig('../fig/mpl_one_two_three.png') show()