码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-01-03 10:29:47      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:条件语句   choice   adobe   username   weight   条件   family   密码   ado   

#三次登是否继续

#三次登是否继续
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条件语句)

标签:条件语句   choice   adobe   username   weight   条件   family   密码   ado   

原文地址:https://www.cnblogs.com/witchingsong/p/12143516.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!