What is the expected behavior of the following code?
x - 3 % 1
y -1 if x > else 0
print (y)
it outputs -1
the code is erroneous and it will not execute
it outputs 1
it outputs 0
Submit