In [5]:
import numpy as np
import matplotlib.pyplot as plt

x = np.arange(0,1,0.01)
y = np.sin(2*np.pi*x)



plt.plot(x,y,'g-')
plt.show()



In [ ]: