What does fig, (ax1, ax2) = plt.subplots(1, 2) create and return?
fig, (ax1, ax2) = plt.subplots(1, 2)
One Figure and two Axes objects arranged in one row and two columns.
Figure
Axes
Two separate Figure objects, each with one axis.
Two image files named ax1 and ax2.
ax1
ax2
One Axes object with two plotted lines.