import scipy import numpy import matplotlib import pylab import platform import socket # please replace 'student' below with your last name # this code will generate a png file, # please send the png file to gingold@cs.nyu.edu your_last_name = 'student' pylab.text( .1, .5, 'scipy %s\nnumpy %s\nmatplotlib %s\non %s, %s' % ( scipy.__version__, numpy.__version__, matplotlib.__version__, platform.platform(), socket.gethostname() ) ) pylab.savefig(your_last_name + '_version_info.png')