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(z): x = 1 y = 1 while z > 1: x = x + 1 y = y * 2 z = z // 2 print(x, y) mystery(1) [l1] mystery(5) [l2] mystery(10) [l3] mystery(42) [l4]
Read Details