多平台统一管理软件接口,如何实现多平台统一管理软件接口
291
2022-09-06
Python初学第一段代码(用Python语言编写一小段代码)
# 4.1:编写用户登录接口# 4.2:编写程序实现用户注册后(注册到文件中),可以登录(登录信息来自于文件)login = 1while login: Inp_zz = input('登录 1/注册 2: ').strip() if Inp_zz == '1': Inp_User = input('请输入用户: ').strip() Inp_Pass = input('请输入密码: ').strip() with open('a.txt',mode='rt',encoding='utf-8') as f3: for g in f3: username,password = g.strip().split(':') if Inp_User == username and Inp_Pass == password: print('登录成功') login = 0 break else: print('用户或密码错误,请重新登录') elif Inp_zz == '2': with open('a.txt',mode='rt',encoding='utf-8') as f1: Inp_rtu = input('用户: ').strip() Inp_rtp = input('密码: ').strip() for i in f1: res1,_=i.strip().split(':') if Inp_rtu.startswith(res1): count = 1 break else: count = 2 if count == 1: print('用于已存在,请重新注册') continue elif count == 2: if len(Inp_rtu) != 0 and len(Inp_rtp) != 0: with open('a.txt',mode='r+b') as f2: f2.seek(0,2) us='{}:{}\n'.format(Inp_rtu,Inp_rtp) f2.write(us.encode('utf-8')) print('注册成功,请重新登录') else: print('无效用户') print() break else: print('非法输入') continue #加油学,加油学,加油学
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~