You are viewing a single comment's thread. Return to all comments →
import numpy as np n,m,p = map(int,input().split()) np_arr1 = np.array([input().split() for _ in range(n)], int) np_arr2 = np.array([input().split() for _ in range(m)], int) print(np.concatenate((np_arr1,np_arr2), axis=0))
Seems like cookies are disabled on this browser, please enable them to open this website
Concatenate
You are viewing a single comment's thread. Return to all comments →