Respuesta :

belali

import random

numberarray1 = []

numberarray2 = []

#Fill with the random values, you can modify this part as you wish.

for i in range(100):

   numberarray1.append(random.randint(0,100))

   

#Copying

numberarray2 = numberarray1.copy()

#Print the last state.

print(numberarray2)

Ver imagen belali