我的想法好像和大家的差不多~

代码如下

a=int(input())
b=0
while a !=1:
    if a%2 ==0:
        a=a/2
        b+=1
    else:
        a=a*3+1
        b+=1
print(b)