X = np.linspace(0,
2 * np.pi,
50)
F = np.sin(X)
plot(X,F)
show()
startx, endx = -0.1, 2*np.pi + 0.1
starty, endy = -1.1, 1.1
axis([startx, endx, starty, endy])