Consider the function powerOfTwo shown below: 1. def powerOf…
Consider the function powerOfTwo shown below: 1. def powerOfTwo(n: int) -> bool :2. if n == 1 :3. return True4. elif n % 2 == 1 :5. return False6. else :7. return powerOfTwo(n / 2) What is the best interpretation of lines 2 and 3?