from matplotlib.pyplot import * from math import pi import numpy as np x = np.linspace(0, 2*pi) y = np.sin(x) style.use('seaborn-colorblind') plot(x, y, 'r--') title('A simple plot') xlabel('theta') ylabel('sin(Θ)') show()