In the blank spaces below, write the value(s) printed by eac…
In the blank spaces below, write the value(s) printed by each call to the following function. def mystery(n): x = 0 y = 0 while n > 0 && n % 2 == 0: x = x + 1 y = y * 10 + n % 10 n = n // 10 print(x, y) mystery(5) mystery(28) mystery(346) mystery(265408)