Matplotlib - Interactive Features
What will happen when you run this code and click the zoom button on the toolbar?
import matplotlib.pyplot as plt x = [1, 2, 3, 4] y = [10, 20, 25, 30] plt.plot(x, y) plt.show()
