# ترانهاده کردن ماتریس matrix = np.array([[1, 2, 3], [4, 5, 6]]) transposed_matrix = np.transpose(matrix) print(transposed_matrix)