Une fonction dans un tableau nu

import numpy as np

array_2d = np.ones((2, 3))
print(array_2d)
Elated Elephant