import numpy和from numpy import numpy的区别

import numpy
使用时:
a=numpy.array([1,1])
from numpy import *
a=array([1,1])

你可能感兴趣的:(python,python)