深刻理解while控制语句:while是一个循环语句,执行下面的缩进代码块,直到while后的条件False后,才停止执行
#-*- coding:utf-8 -*-
myInt = int(raw_input('Please input a positive integer:'))
count = 0
while myInt > 0:
if myInt % 2 == 1:
myInt = myInt / 2
else:
myInt = myInt - 1
count = count + 1
print count
print myInt
代码块看似不难,但理解错了意思,没有领会到代码块的真实目的。
此处是看经过几次运算,将输入的数变为0,而不是针对奇数,偶数进行简单处理。