我有以下代码:
import numpy as np
x=np.array([[3, 5, 1]])
print(x.shape) #get (1,3)
np.multiply(x.shape, 8) #get [ 8, 24]
print(*x.shape) # get 1 3
np.array((np.multiply(*x.shape), 8)) #get [3, 8]
请解释为什么/如何 np.multiply(*x.shape, 8) 得到 [3, 8] ?
MYYA
aluckdog
相关分类