1. 程式人生 > 程式設計 >python應用檔案讀取與登入註冊功能

python應用檔案讀取與登入註冊功能

python應用檔案讀取與登入註冊功能,具體實現程式碼如下所示:

#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Author: zhw
#讀取檔案中的內容
def open_file(filename,file_type,*args):
  #讀取檔案中的資料
  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('您輸入的格式沒有,請檢查')
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
  #檢查賬號是否已經存在
  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
#迴圈驗證登入,迴圈註冊賬號
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('您輸入的賬號已經存在,請選擇其他賬號')
    #print('您輸入的錯誤次數太多,已退出!')
  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('輸入序號有無,請重新輸入')

總結

以上所述是小編給大家介紹的python應用檔案讀取與登入註冊功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回覆大家的。在此也非常感謝大家對我們網站的支援!
如果你覺得本文對你有幫助,歡迎轉載,煩請註明出處,謝謝!