注意:此页面搜索的是所有试题
请完善以下代码:
import numpy as np
a = np.array([[1, 2, 3], [4, 5, 6]])
# print(a.shape)
b = a.________(3, 2) # 将数组a变为3行2列
print(b)

参考答案