DownloadsDownloadJan David Fischbachimport numpy as np import matplotlib.pyplot as pltx = np.linspace(0, 4 * np.pi, 100) y = np.sin(x) _ = plt.plot(x, y)