Wie man Array -Elemente in derselben Linie in Python bekommt

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