# using the variable ax for single a Axes
fig, ax = plt.subplots()
# using the variable axs for multiple Axes
fig, axs = plt.subplots(2,2)
# using tuple unpacking for multiple Axes
fig,(ax1, ax2)= plt.subplot(1,2)
fig,((ax1, ax2),(ax3, ax4))= plt.subplot(2,2)
fig,(ax1, ax2,ax3,ax4,ax5)= plt.subplots(1,5)
# Whatever you want your values to be:-
ax1.plot([1,2,3,4,5],[1,2,3,4,10],'go')
ax2.plot([1,2,3,4,5],[2,3,4,5,11],'b*')
#X labels:-
ax1.set_xlabel('whatever you want')
ax2.set_xlabel('whatever you want')
ax3.set_xlabel('whatever you want')
ax4.set_xlabel('whatever you want')
ax5.set_xlabel('whatever you want')
#You can do same withY axis