You are viewing a single comment's thread. Return to all comments →
import numpy as np if __name__ == "__main__": N, M = input().split() N = int(N) M = int(M) array = np.array( [list(map(int, input().split())) for i in range(N)]) print(np.transpose(array)) print(array.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 →