Intern — Middle
How does the dictionary change when assigning a reference
livecode
Task condition
Specify what output will be obtained after executing the code below.
a = {1: 'qwe'}
b = a
b[1] = 'asd'
print(a)
livecode
Task condition
Specify what output will be obtained after executing the code below.
a = {1: 'qwe'}
b = a
b[1] = 'asd'
print(a)