else: print count,"is not less than 5"
2 回答
Jenkins_lee
TA贡献12条经验 获得超18个赞
>>> count = 0 >>> while count < 5 : print count, 'is less than 5' count += 1 else: print count,'is not less than 5' 0 is less than 5 1 is less than 5 2 is less than 5 3 is less than 5 4 is less than 5 5 is not less than 5
添加回答
举报
0/150
提交
取消