Download this file
1 2 3 4 5 6 7
from pylab import * plot([1,2,3]) xlabel('time') ylabel('volts') title('A line') savefig('text_simple') show()