x = np.linspace(0, 2*np.pi, 10)
y = np.sin(x)print(y不正确怎么改
import numpy as np n = int(input()) x = np.linspace(0, 2*np.pi, n) y = np.sin(x) print(y)