python--多用户注册账号和密码

#多人注册账户和密码,用户名和密码和文档中的数据相同则提示登陆,不相同则提示注册
tip = print('请注册你的账号和密码')
while True:
    # 注册功能写入文件,检测账户是否已注册,已注册的提示已注册,没注册的继续往下写
    user = input('你的用户名: ').strip()
    password = input('你的密码: ').strip()
    k = '%s:%s\n' % (user, password)  # 用户名和密码匹配起来生成的name:password
    # print(k)
    # txt文件中写入k中的值,先阅读userinfo中的数据是否已存在
    with open(r'userinfo.txt', 'r', encoding='utf8') as f1:
        # 写入userinfo.txt的文件当中
        # 检查用户名是否已注册,如果注册了则提示注册已注册,未注册则继续
        # 如何检测用户名已注册,循环遍历每一行【0】即user【0】
        # line表示遍历f1中的元素
        for line in f1:
            # 获取每一行数据中的用户名,用split切割k中的数据,按照索引值取,strip('')切割特殊字符
            e_user, e_password = line.split(':')
            if user == e_user and e_password.strip('\n') == password:
                print('用户已注册,请登陆')
                break
        # 用户名未注册,则
        else:
            with open(r'userinfo.txt', 'a', encoding='utf8') as f:
                f.write(k)
                print('用户:%s 注册成功' % user)

你可能感兴趣的:(python,实战演练,python)