Что выведет код?
def f(n):
x, y = -n, -n
return x is y
print(f(0), f(5), f(10))
def f(n):
x, y = -n, -n
return x is y
print(f(0), f(5), f(10))