numpy 对ndarray增加一个新的

import numpy as np

a=np.array([[1,2],[3,4]])

a=a[np.newaxis, :]

print(a)

输出L:
array([[[1, 2],
[3, 4]]])

你可能感兴趣的:(numpy)