We recently encountered a troubling problem with python.
Wondering if anybody can explain if this is a bug or feature.
array1 = ['a','b','c']
test = array1
del test[2]
print(test)
print(array1)
What would you guess the output is?
It is
['a', 'b']
['a', 'b']
How does the RHS take the value of the left? Thanks,