def collatz(n): while n > 1: if n%2 == 0: n = n//2 else: n = 3*n+1 print('in the loop; n=', n) print('out of the loop; n =', n)