I am two list with same value [6,1,2,3,4].After that i'am changing the first value of list_x as 0.But its also changing the list_y.
list_x = list_y = [6,1,2,3,4]
list_x[0] = 0
print (list_y)
//output:[0,1,2,3,4]
is there any way to change the list_x alone?i need to change the value of only one list how can i do this?