In [ ]:
import matplotlib as mpl
import matplotlib.pyplot as plt
In [ ]:
plt.style.use('classic')
In [7]:
# ------- file: myplot.py ------
import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 10, 100)

plt.plot(x, np.sin(x))
plt.plot(x, np.cos(x))

plt.show()
In [ ]: