import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"]=[7.50,3.50]
plt.rcParams["figure.autolayout"]=True
x = np.linspace(-10,10,100)
y = np.sin(x)
plt.plot(x, y, dashes=[1,1,2,1,3], linewidth=7, color='red')
plt.show()