import numpy as np
b = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
print("Полученная матрица:\n", b)
print(np.max(b, axis=0))Что позволяет найти последняя строка кода?
MA Machinelearning tests @machinelearningtest · 661 subscribers import numpy as np
b = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
print("Полученная матрица:\n", b)
print(np.max(b, axis=0))