This lesson shows how to create a figure and axes using matplotlib in Python. First, we import matplotlib.pyplot as plt. Then we create a Figure object with plt.figure(). Next, we add an Axes object to the figure using fig.add_subplot(111), which means one row, one column, first subplot. We plot data on the axes with ax.plot(). Finally, plt.show() opens a window displaying the plot. Variables plt, fig, and ax change as we create and add objects. Beginners often wonder why Figure must be created first, what '111' means, and why plotting doesn't immediately show the plot. The execution table traces each step and object creation. The visual quiz tests understanding of these steps. Remember: Figure is the container, Axes is the plot area, and show() displays the figure.