3 Respuestas
+ 3
"is" means the same object
"==" means the same value
list1 = [1,2,3]
list2 = [1,2,3]
list2 == list1
but list2 is not list1
list3 = list1
list3 is list1
because list1 is not duplicated but refers to the same object
+ 2
I want "is" explanation