Matplotlib - Real-World Visualization Patterns
What will be the output of this code snippet?
import matplotlib.pyplot as plt before = [5, 7] after = [8, 6] plt.plot([1, 2], before, label='Before') plt.plot([1, 2], after, label='After') plt.legend() plt.show()
