Jak zdobyć elementy tablicy w tej samej linii w Python

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