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

用户输入错误三次则退出

时间:2017-06-27 23:37:44      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:用户   三次   put   font   用户输入   print   and   span   while   

#!/usr/bin/env python
# -*- coding:utf-8 -*-
i = 0
while i< 3:
 name = raw_input("用户名:")
 pwd = raw_input("密码:")
 if name =="刘仕民"and pwd =="123":
  print("登陆成功")
  break
 elif i == 0:
  print("你还有2次输入机会")
 elif i == 1:
  print("你还有1次输入机会")
 elif i == 2:
  print("     登陆失败    ")
  print("你还有0次输入机会")
 i += 1

用户输入错误三次则退出

标签:用户   三次   put   font   用户输入   print   and   span   while   

原文地址:http://www.cnblogs.com/liushimin/p/7087363.html

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