摘要: 把登录与注册的密码都换成密文形式 import hashlib pwd = input('请输入密码:').strip() with open('db.txt','a',encoding='utf-8') as f: hash1 = hashlib.md5(pwd.encode('utf-8')) 阅读全文
posted @ 2020-03-31 17:25 pythoner_wl 阅读(78) 评论(0) 推荐(0) 编辑