python系统-python实现用户登录系统

本文实例为大家分享了用户登录系统python实现代码,供大家参考,具体内容如下

注意事项:

1、使用python3执行程序。按提示输入1或2,登录或退出程序

2、输入用户名后,如果用户名被锁定及无效用户名,程序会退出,请确保输入正确。

3、输入用户名正确后,输入密码。用户名正确的情况下,密码连续输错三次,用户将被锁定,禁止登录系统

#!/usr/local/env python

#coding:utf-8

#Auto:Panwenbin

#function:

lock_file=open('file_lock.txt','r+')

user_pass=open('username_file.txt','r+')

count=0

cmd=input('''

1:登录系统

2:退出系统

请输入您的操作:''')

if cmd.isdigit() and int(cmd)==2:

exit()

elif cmd.isdigit() and int(cmd)==1:

while count <3:#只要重试不超过3次就不断循环

username=input('请输入您的用户名:')

for i in lock_file.readlines(): #判断用户名是否在锁文件中

i=i.split()

if username in i[0]:

print('对不起 %s

你可能感兴趣的:(python系统-python实现用户登录系统)