It is true, you can assign the content of array 2 to array 1 using the assignment operator.
As given in the question, assume there are two arrays named array1 and array2. To assign the content of array2 to array1 you can use the following statement
array1=array2;
This statement assign the content of array2 to array1. It is noted that it is only possible in Python programming language. If you are doing programming in other languages such as in C++, Java, or C# then you need to use the for loop, to assign the content of array2 to array1.
It is only possible in Python programming to assign the content of array2 to array1 using the assignment operator. For example, the array2 has the following content
array2 = ([2, 6, 10, 4])
array1=array2;
It is noted that it only create the array1 that share the reference of array2.
If you change the content of array2, then it will also change the content of the array1.
For example, change the content of array2:
array2[1]=10;
After executing the above statement, the content of array1 will be changed also accordingly.
The complete code is given below
array2 = ([2, 6, 9, 4])
array1=array2
print (array1)
print (array2)
//now change the content of array2
array2[1]=10
print (array1)
print (array2)
You can learn more about array in python at
https://brainly.com/question/21723680
#SPJ4