You are viewing a single comment's thread. Return to all comments →
Adding on @LittleFox's solution.
You can solve in Python 3 by using list.
list
import numpy N, M, P = map(int, input().split()) NP = numpy.array([list(map(int, input().split())) for i in range(N)]) MP = numpy.array([list(map(int, input().split())) for j in range(M)]) print(numpy.concatenate((NP, MP), 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 →
Adding on @LittleFox's solution.
You can solve in Python 3 by using
list
.