Intern — Middle
Creating a separate copy of the dictionary without mutual influence
livecode
Task condition
It is necessary to ensure that any changes made to the variable b_dict do not reflect on the variable a_dict. When printing a_dict, the original dictionary should be displayed without any modifications.
a_dict = {1: 'qwe'}
b_dict = a_dict
b_dict[1] = 'asd'
print(a_dict)