Comment obtenir des éléments de tableau dans la même ligne dans Python

for i in array:
    print(array[i], end=" ")
Hurt Hedgehog