What is the output of this code? (NumPy has been imported as np.)
table = np.array([
[1,3],
[2,4]])
print(table.max(axis=1))
What is the output of this code? (NumPy has been imported as np.)
table = np.array([
[1,3],
[2,4]])
print(table.max(axis=1))