百木园-与人分享,
就是让自己快乐。

Python 做简单的登录系统

 

案例 之 登录系统原创作品1

 

 

该随笔 仅插入部分代码:全部py文件源代码请从百度网盘自行下载!

链接:https://pan.baidu.com/s/1_sTcDvs5XEGDcnpoQEIrMg 提取码:lu5m

 

 

1 \'\'\'
2 注册界面
3 \'\'\'
4 import json
5
6
7 def login_register():
8 user_dict = {}
9 print(\'====注意:用户名和账号请用英文名称====\')
10 user_name = input(\'请输入用户名:\')
11 register_name = input(\'请输入登录账号:\')
12 register_pw = input(\'请输入登录密码:\')
13 user_dict[\'username\'] = user_name
14 user_dict[\'admin\'] = register_name
15 user_dict[\'passwords\'] = register_pw
16 with open(\'register-user\', \'a+\', encoding=\'utf-8\') as f:
17 f.write(json.dumps(user_dict)+\'\\n\')
18 print(\'注册成功!\')

来源:https://www.cnblogs.com/liu-blogs/p/15292481.html
图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » Python 做简单的登录系统

相关推荐

  • 暂无文章