欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python文件夹操作实现基础的注册登录

程序员文章站 2022-06-19 10:49:41
username = input('请输入你要注册的用户名:')password = input('请输入你要注册的密码:')with open('list_of_info',mode='w',encoding='utf-8') as f: f.write('{}\n{}'.format(usern ......
username = input('请输入你要注册的用户名:')
password = input('请输入你要注册的密码:')
with open('list_of_info',mode='w',encoding='utf-8') as f:
f.write('{}\n{}'.format(username,password))
# f.write设置输入文字内容和格式,f.write()括号里只能输入一项,用格式化输出可以输入多项
print('恭喜您,注册成功')
lis = []
i = 0
while i < 3:
usn = input('请输入你的用户名:')
pwd = input('请输入你的密码:')
with open('list_of_info',mode='r+',encoding='utf-8') as f1:
# 和f.write不同,读取后可以直接进行其他操作,不用写f.read
for line in f1:
lis.append(line)
if usn == lis[0].strip() and pwd == lis[1].strip():
# strip()去特殊字符,注意有括号
print('登录成功')
break
else:print('账号和密码错误')
i+=1