You are viewing a single comment's thread. Return to all comments →
Got it with one row less:
narr = numpy.array([raw_input().split() for _ in xrange(int(raw_input().split()[0]))],int) print narr.transpose() print narr.flatten()
Seems like cookies are disabled on this browser, please enable them to open this website
Transpose and Flatten
You are viewing a single comment's thread. Return to all comments →
Got it with one row less: