标签:用户 三次 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