Labelling a single point in a Matplotlib graph displays text with the point.
Solution for How to label a single point in a Matplotlib graph in Python : You can use matplotlib.pyplot.annotate() to label a single point Call matplotlib.pyplot.annotate(s, xy) to add a label string s to a point, where xy is a tuple of the point coordinates.