add caption to plot python

Solutions on MaxInterview for add caption to plot python by the best coders in the world

showing results for - "add caption to plot python"
Oscar
30 Apr 2018
1txt="I need the caption to be present a little below X-axis"
2plt.figtext(0.5, 0.01, txt, wrap=True, horizontalalignment='center', fontsize=12)
3