Challenge yourself

Beginner
Intermediate
Expert

def compare(a, b, c):
    print(a == b or a < c)

x, y, z = 1, 2, 3
d = x == 1 or y == 2 or y < z
compare(x, y, -1 * z)

Given the above script:

What is printed:
What is the final value of d: