代码1(while循环和IF条件语句)

Posted witchingsong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码1(while循环和IF条件语句)相关的知识,希望对你有一定的参考价值。

#三次登是否继续

#三次登是否继续
count = 1
while count<=3:
username = input(请输入用户名:‘)
password = input(请输入密码‘)
n = 3-count
if username == ‘whzc‘ and password == ‘whzc‘:
print(欢迎登录‘)
break
else:
print(用户名或密码错误,您还有‘,n,次机会‘)
if count==3:
choice = input(请输入是否继续(Y/N‘)
if choice==‘N‘:
break
elif choice==‘Y‘:
count = 1
continue
else:
print(输入错误‘)
break
count+=1

以上是关于代码1(while循环和IF条件语句)的主要内容,如果未能解决你的问题,请参考以下文章

Python基础语法—— 条件语句(if)+循环语句(for+while)

条件语句循环数组

判断语句和循环语句

第六篇:循环语句 - while和for

Python语法基础03(if语句,while循环与for循环)

初学python随笔——控制和循环语句