Matplotlib - Real-World Visualization Patterns
Examine the code below and identify the issue:
import matplotlib.pyplot as plt fig, ax = plt.subplots() ax.plot([1, 2, 3], [4, 5]) plt.show()
