import scipy as s x = s.arange(0, 10, 0.1) y = s.sin(x)
import numpy x = numpy.arange(0, 10, 0.1) y = numpy.sin(x)