Matplotlib - Real-World Visualization Patterns
What will be the output layout when running this code?
fig, axs = plt.subplots(1, 3)
for ax in axs:
ax.plot([1, 2, 3], [1, 4, 9])
plt.tight_layout()
plt.show()