大家好,小编来为大家解答以下问题,python编写一个注册验证程序,用python编写注册登录程序,今天让我们一起来看看吧!
Source code download: 本文相关源码
# 需求分析
# 1.写一个注册的程序,输入username,密码,密码确认,输入的账号和密码不能为空,
# 2.两次输入密码必须一致,用户名不能重复,错误次数是3次
#分析
# 1.输入username,密码,密码确认
# username
# passwd
# c_passwd
# 2.输入的账号和密码不能为空
#3.两次输入密码必须一致
#4.用户名不能重复
# 需要获取存储用户信息的文件并进行比对(新的知识点)同时把注册好的用户信息存储在用户信息存储文件中。
#python 中的斜杠与Windows中的斜杠方向相反
#5.错误次数是3次(完成)
i=0
while True:
file = open('C:/username.txt', 'a+')
file.seek(0)
users = []
for line in file:
username = line.strip()
users.append(username)
username = input('请输入用户名:')
passwd = input('请输入密码:')
c_passwd = input('请再次输入密码:')
if username == '' or passwd == '' or c_passwd == '':