def f(a, b):
a["val"] += b["val"]
b = {"val": 0}
x = {"val": 1}
y = {"val": 2}
f(x, y)
print(x["val"], y["val"])
Post #3148
616
Что выведет код?