数据的拼接 numpy.vstack(tup) # 竖直拼接 numpy.hstack(tup) # 水平拼接 示例: import numpy as np t1 = np.arange(12).reshape(2,6) t2 = np.arange(12,24).reshape(