基于Python实现用户管理系统
程序员文章站
2022-04-25 17:00:59
基于python的用户管理小系统,包含文件读写操作,实现了用户信息注册和登录的简单功能。
class userlogreg:
"""
created...
基于python的用户管理小系统,包含文件读写操作,实现了用户信息注册和登录的简单功能。
class userlogreg: """ created on 2018.11 @author: tox33 """ def __init__(self): """ :param userfile: 操作的文件 """ self.userfile = "user.txt" def userlogin(self,username,password): """ 用户登录 :param username:用户名 :param paaword:密码 :return:true,用户登录成功;false,用户登录失败 """ try: f = open(self.userfile,"r",encoding="utf-8") for line in f: line = line.strip() line_list = line.split("#") if line_list[0] == username and line_list[1] == password: return true elif line_list[0] == username and line_list[1] != password: print("密码错误!!") return false except ioerror: return false def userregister(self,username,password): """ 用户注册 1、打开文件 2、用户名#密码 :param username:用户名 :param password:密码 :return:true,注册成功 """ with open(self.userfile,"a",encoding="utf-8")as f: temp = "\n" + username + "#" + password f.write(temp) return true def user_exist(self,username): """ 检测用户名是否存在 :param username:要检测的用户名 :return: true,用户名存在;false,用户名不存在 """ try: with open(self.userfile,"r",encoding="utf-8") as f: for line in f: line = line.strip() line_new = line.split("#") if line_new[0] == username: return true return false except ioerror: return false def main(self): """ 主控制函数 :操作选择参数arg: 0-注册 1-登录 """ print("欢迎来到al用户管理系统") while(true): arg = input("0:注册 ,1:登录\n") if arg == "0": user = input("请设置用户名:") if self.user_exist(user): print("用户名已存在,请重新设置!") continue else: pwd = input("请设置密码:") if self.userregister(user,pwd): print("注册成功!") continue else: print("注册失败!") continue elif arg == "1": user = input("请输入用户名:") if not self.user_exist(user): print("用户名不存在,请检查!") continue else: pwd = input("请输入登录密码:") if self.userlogin(user,pwd): print("登录成功!") break else: print("登录失败,请检查!") continue else: print("输入错误,请检查!") continue if __name__ == '__main__': test = userlogreg() test.main()
参考网址:python登录注册验证功能实现
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: python实现诗歌游戏(类继承)
下一篇: Python实现简单查找最长子串功能示例