23RaBii766 23RaBii766 17-02-2021 Computers and Technology contestada What is the output of this Python code? def guess(a, b, c): if a > b and a < c: print(True) else: print(false) X = 45 y = 31 z = 78 guess(x, y, z)