not getting expected values in y axis ,is there any problem in my code ? plot i m getting, plot expected
import matplotlib.pyplot as plt
x_values = list(range(1,1001))
y_values = [ x**2 for x in x_values]
plt.scatter(x_values,y_values,s=40)
plt.title("scattered squares 2",fontsize=15)
plt.xlabel("value",fontsize=14)
plt.ylabel("square of value",fontsize=15)
# Set the range for each axis.
plt.axis([0,1100,0,1100000])
plt.show()
not getting expected values in y axis ,is there any problem in my code ?

