https://paiza.jp/works/mondai/loop_problems2/loop_problems2__div_two
私の回答
n = int(input())
ans = 0
while n % 2 == 0:
n = n / 2
ans += 1
print(ans)
模範解答
N = int(input())
div_count = 0
while True:
if N % 2 == 0:
N //= 2
div_count += 1
else:
break
print(div_count)
模範解答はwhileの中でTrueとかbreakを使っていました。