Download this file
1 2 3 4 5 6 7 8 9
#!/usr/bin/env python from pylab import * subplot(211) plot([0],[0],'o') subplot(212) plot([1],[1],'o') show()