Как изменить другой стиль линии и маркер на python графике, вот мои коды
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
f = lambda x, a, b: a*x**2+36*a*x
x = np.linspace(start=0,stop= 1,num= 50)
alist = [0.1,0.3, 0.6,0.9]
blist = list(range(0,4))
for i in range(4):
y = [f(j, alist[i], blist[i]) for j
in x]
plt.plot(x, y, label=(r'a='+
str(alist[i])))
plt.legend()
plt.xlabel('Magnitude(average)')
plt.ylabel('$\sigma$')
plt.grid()
plt.show()