import matplotlib.pyplot as plt
x = [3, 5, 7, 5, 10]
y = [1, 2, 3, 4, 5]
plt.plot(x, y, 'g--')
plt.grid()
plt.xlabel('икс')
plt.ylabel('игрек')
plt.title('Название')
plt.show()
def get_plt():
return plt
def f1(l):
l.set_dashes([2, 2, 10, 2])
fig, ax = plt.subplots()
line1, = ax.plot(x, y)
f1(line1)