python plot sine curve or wave Posted on 2018-08-04 | In python description: python code to plot sine wave draw or plot sine curve code12345678import numpy as npimport matplotlib.pyplot as pltx=np.arange(0,2*np.pi,0.01)y=np.sin(x)plt.plot(x,y)plt.show() Post author: killfun Post link: http://search4fan.github.io/post/python_draw_sin_curve.html Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.