Ok, so here's the python code:
example = [1,2,3]
a = example
b = example.append(4)
print(a)
print(b)
And the output is:
[1, 2, 3, 4]
None
while I was expecting something like:
[1,2,3]
[1,2,3,4]
why does "a" gets modified even when i was only modifying "example"
and why does "b" return "None"