我有这个代码
from matplotlib import pyplot as plt
z = float(input("Enter the value of x "))
a = float(input("Enter the value of a "))
b = float(input("Enter the value of b "))
c = float(input("Enter the value of c "))
x = []
y = []
for i in range(1000):
x.append(i)
t = (a * (i ** 2)) + (b * i) + c
y.append(t)
plt.plot(x, y)
plt.show()
我在绘制图形时只能看到正象限,如何编辑此代码以显示所有象限
编辑:这是我想在图表中间看到x轴和y轴来分隔象限