赞
踩
使用Python画出正弦图可以通过使用matplotlib库中的plot函数来实现,具体代码如下:import numpy as npimport matplotlib.pyplot as pltx = np.arange(0, 4 * np.pi, 0.1)y = np.sin(x)plt.plot(x, y)plt.show()