You are viewing a single comment's thread. Return to all comments →
import numpy as np n, m, p = map(int,input().split()) l = [] for _ in range(n): l.append(list(map(int, input().split()))) n_arr = np.array(l) l = [] for _ in range(m): l.append(list(map(int, input().split()))) m_arr = np.array(l) print(np.concatenate((n_arr, m_arr), 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 →