while,for,if输入账号密码判断(还请各位大牛…

2019-04-20 08:52:15来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

AccountNumber1 = []
password1 = []
flag = True
while flag:
    num = 0
    a = 1
    print('-----------这是个欢迎界面---------------')
    print('''
    1、注册账号
    2、登陆账号
    3、更改密码
    ''')
    num=input()

    if num==1:
        while a<2:
            AccountNumber=input('请您注册账号')
            if AccountNumber1.count(AccountNumber)==0:
                AccountNumber1.append(AccountNumber)
                print('您的账号是{}'.format(AccountNumber))
            else:
                print('{}这个账号已经被注册过咯!请进行其他操作!'.format(AccountNumber))
                break
            password=input('请注册您的密码')

            if password1.count(password)==0:
                # print(password1.count(password1))
                password1.append(password)
                print('您的密码是{}'.format(password))
                a+=1
    if num==2:
        x=-1
        EnterAccount=input('请输入您的账号')
        Enterpassword=input ('请输入您的密码')
        for i in AccountNumber1:
            x+=1
            if i==EnterAccount:
                if password1[x]==Enterpassword:
                    print('登陆成功!')
                    flag = False
                    break
                else:
                    print("密码不正确")
            else:
                print('账号不存在')
        else:
            print('账号不存在')

    if num == 3:
        x = -1

        for i in AccountNumber1:
            x += 1
            AccountNumber = input('请输入您的账号')
            OldPassword = input('请输入您的旧密码')
            if i == AccountNumber:
                if password1[x] == OldPassword:
                    NewPassword=input('输入您的新密码')
                    password1[x]=NewPassword
                    print('修改完毕!')
                    flag = False
                    break
                else:
                    print("密码错误,请重新输入旧密码")

            else:
                print('账号不存在或错误')
        else:
            print('账号不存在')

 


原文链接:https://www.cnblogs.com/ilovepython/p/10739002.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:用Python批量下载DACC的MODIS数据

下一篇:模块使用:time、datetime、calendar、sys、os、os.path、normca