Question: Problem 1 : Given the code below: a_list = [1, 2, 3] b_list = a_list a_list.append(27) a) Which variables are immutable ? b) Explain the
Problem 1:
Given the code below:
a_list = [1, 2, 3]
b_list = a_list
a_list.append(27)
a) Which variables are immutable?
b) Explain the modification of a reference to mutable objects?
this is a python problem please help me as soon as possible.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
