📑 Task
1) What will the program print in the last 2 lines?2) Why do variables change or not change in this way?
3) What minimal changes can be made to the program so that the values will be increased
and the last 2 lines will be 3 [0, 1, 2, 3] and 0 [0, 1, 2, 3]?
📑 Answer
1) 1 [0, 1, 1, 1] and 0 [0, 1, 1, 1]2) Variables with mutable and immutable objects
are used as default arguments to a function
3)