Comment ajouter un nombre à chaque élément dans un tableau Python avec boucle
from numpy import *
arr = array([15,2,55,4,5])
for i in range(5):
res = arr[i]+5
print(res,end=' ')
RAJU rJ