请完善以下代码:
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)
出自:国家开放大学Python程序设计