"figure title"

How would I put a title on a plot, separate from any one

    > axes? I.e., a "figure title"

    > Please copy me on response as I get the digest.

fig = figure()
figtitle = 'This is a figure title'
t = fig.text(0.5, 0.95, figtitle, horizontalalignment='center')

JDH