from pylab import imshow,gray,show
from numpy import loadtxt

data = loadtxt("circular.txt",float)

imshow(data,origin="lower")

gray()

show()