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