循环为什么是 while count 不是 while count<3
第 07-08客户作业下面代码循环为什么是 while count 不是 while count<3 ? while conut 默认条件是什么?
count = 3
password = 'FishC.com'
while count:
passwd = input('请输入密码:')
if passwd == password:
print('密码正确,进入程序......')
break
elif '*' in passwd:
print('密码中不能含有"*"号!您还有', count, '次机会!', end=' ')
continue
else:
print('密码输入错误!您还有', count-1, '次机会!', end=' ')
count -= 1 一样的,只要count不等于0,就会循环的
页:
[1]