from matplotlib import pyplot as plt xC=0 #x cordonate yC=0 #y cordonate label = "[your label goes here]" #label text plt.text(xC, yC, label) plt.show()