python應(yīng)用文件讀取與登錄注冊功能,具體實現(xiàn)代碼如下所示:
10年積累的成都做網(wǎng)站、成都網(wǎng)站建設(shè)經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認識你,你也不認識我。但先網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有淮上免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。#!/usr/bin/python3 # -*- coding: utf-8 -*- # Author: zhw #讀取文件中的內(nèi)容 def open_file(filename ,file_type , *args): #讀取文件中的數(shù)據(jù) if file_type == 'r': flie_list = [] with open(filename,file_type) as sub_all: for file_line in sub_all: flie_list.append(file_line.strip()) #print(flie_list) return flie_list #讀取文件中的用戶號 elif file_type == 'ru': flie_list = [] with open(filename,'r') as sub_all: for file_line in sub_all: file_l = file_line.split('|') user_no = file_l[0] flie_list.append(user_no.strip()) #print(flie_list) return flie_list #寫入文件 elif file_type == 'a+': data = args[0] with open(filename, file_type) as sub_all: sub_all.write(data +"\n") else: print('您輸入的格式?jīng)]有,請檢查') class User(object): def __init__(self, user_no, user_pw): self.user_no = user_no self.user_pw = user_pw self.file = 'login.log' @property #檢查賬號是否已經(jīng)存在 def check_user(self): flie_list = open_file(self.file, 'ru') if self.user_no in flie_list: return '1' else: return '0' #注冊賬號 def regist(self): user_info = '%s|%s' % (self.user_no, self.user_pw) open_file(self.file, 'a+',user_info) #return'注冊成功' #賬號登錄 def login(self): flie_list = open_file(self.file, 'r') user_info = '%s|%s' % (self.user_no, self.user_pw) if user_info in flie_list: return '1' else: return '0' def return_more(args): pass #循環(huán)驗證登錄,循環(huán)注冊賬號 while True: print('請選擇\n ' '1. 注冊\n' '2. 登錄\n' '3. 退出') choose = input('請選擇').strip() if choose == '1': for i in range(3): user_no = input('請輸入注冊賬號:').strip() user_pw = '' user = User(user_no,user_pw) #檢查用戶號是否存在 return_more = user.check_user if return_more == '0': user_pw = input('請輸入注冊密碼:').strip() user = User(user_no, user_pw) return_more = user.regist() print(return_more) break else: print('您輸入的賬號已經(jīng)存在,請選擇其他賬號') #print('您輸入的錯誤次數(shù)太多,已退出!') elif choose == '2': for i in range(3): user_no = input('請輸入登錄賬號:').strip() user_pw = input('請輸入登錄密碼').strip() user = User(user_no, user_pw) #用戶登錄 return_mk = user.login() if return_mk =='0': print("登錄失敗,請重新輸入") else: print('登錄成功') break elif choose == '3': break else: print('輸入序號有無,請重新輸入')
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。