📜  创建形状为 0,2 的数组 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:47.054000             🧑  作者: Mango

代码示例1
arr = np.zeros((0, 2))
arr.shape

(0, 2)