You are viewing a single comment's thread. Return to all comments →
mport numpy as np
n, m, p = map(int, input().split())
y1 = np.array([input().split() for _ in range(n)], int) y2 = np.array([input().split() for _ in range(m)], int)
cat = np.concatenate((y1,y2), axis = 0)
print(cat)
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 →
mport numpy as np
n, m, p = map(int, input().split())
y1 = np.array([input().split() for _ in range(n)], int) y2 = np.array([input().split() for _ in range(m)], int)
cat = np.concatenate((y1,y2), axis = 0)
print(cat)