现在我在做的是:
import numpy as np
x = np.arange(100)
无论如何要进口,我可以直接进行:
x = arange(100)
答案 0 :(得分:2)
如果您想使用没有前缀(numpy
)的所有np
种可能性:
from numpy import *
如果您只想使用arange()
:
from numpy import arange
答案 1 :(得分:2)
from numpy import arrange
x = arange(100)