...

/

Same Operands, Different Story!

Same Operands, Different Story!

No one promised you that the operands would not trick you.

1.

What do you think the output of this code will be?

Python 3.5
a = [1, 2, 3, 4]
b = a
a = a + [5, 6, 7, 8]
print(a)
print(b)

2.

Do you think the output will be the same as ...