用户登录(三次重试)

count=0
while count<3:
    use=input("用户名:>>>")
    pwd=input("密码:>>>")
    if use=="alex" and pwd=="123":
        print("欢迎登录")
    else:
        print("用户名或密码错误!")
    count=count+1

结果:用户名>>>  密码>>>    

posted @ 2017-12-19 06:38  打不死的--蟑螂  阅读(273)  评论(0编辑  收藏  举报