import numpy
import pylab
import matplotlib.pyplot as plt
a = numpy.array([[1,2],[3,3],[4,4],[5,2]])
plt.plot(a[:,0], a[:,1], 'bo')
plt.show()