...

/

Same Operands, Different Story!

Same Operands, Different Story!

We'll cover the following...

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

1.

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

Press + to interact
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 ...