EasyOutput prediction

pass inside an if block

What does this code print?

x = 5
if x > 0:
    pass
else:
    print("non-positive")
print("done")

← → arrow keys to navigate

Sign in to save your progress.