Jump to

v12-l2-codeOutput2

What is the output of the following Python code ?

s1 = "Chuck"
s2 = s1
s2 += " Norris"

d1 = {"FirstName": "Chuck"}
d2 = d1
d2["LastName"] = "Norris"

print(s1, d1)

???