كيف يمكنني أن أجعل قيم المحور العمودي تبدأ من ال 0. هنا في الكود التالي:
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-2, 2, 50)
y1 = x**3
y2 = x**2
fig, ax = plt.subplots()
ax.plot(x, y1, c = 'black',label = 'x^3')
ax.plot(x, y2, c = 'c',label = 'x^2')
leg = plt.legend(title="your_title")
plt.show()