plt.xlabel("X axis label")
Here is what the above code is Doing:
1. We’re creating a figure with a size of 8×6 inches.
2. We’re creating an axes object on that figure.
3. We’re plotting some data on that axes.
4. We’re giving the axes some labels.