différence numpy entre deux tableaux

import numpy as np
result = np.subtract([1.1, 2.2, 3.3], [1, 2, 3])
Difficult Dormouse