How to fill a large array by repeatedly copying the values from a small array in Python

1 Answer

0 votes
# Initialize the small and large arrays
smallarray = [1, 2, 3, 4, 5]
largearray = [0] * 30

largelen = len(largearray)
smallelen = len(smallarray)

# Fill largearray with elements from smallarray
for i in range(largelen):
    largearray[i] = smallarray[i % smallelen]

for i in range(largelen):
    print(largearray[i], end=" ")




'''
run:

1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 

'''

 



answered Feb 7, 2025 by avibootz
...