Python-登录
Posted 他还在坚持嘛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-登录相关的知识,希望对你有一定的参考价值。
import time with open(‘user.txt‘) as fr: result = fr.read() users = {} if result: all_user_pwd = result.split(‘ ‘) for i in all_user_pwd: user = i.split(‘,‘)[0] pwd = i.split(‘,‘)[-1] users[user]=pwd while True: username = input(‘请输入账号:‘).lower().strip() password = input(‘请输入密码:‘).strip() if username == ‘‘ and password == ‘‘: print(‘不能为空‘) elif username in users: if password==users.get(username): print(‘%s登录成功,今天的日期是%s‘ % (username, time.strftime(‘%Y-%m-%d %H:%M:%S‘))) break else: print(‘密码不对‘) else: print(‘账户不存在‘)
以上是关于Python-登录的主要内容,如果未能解决你的问题,请参考以下文章