91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python應用文件讀取與登錄注冊功能

發布時間:2020-10-22 10:52:11 來源:腳本之家 閱讀:115 作者:紅桃五 欄目:開發技術

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應用文件讀取與登錄注冊功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

贵州省| 湘潭县| 滦平县| 武鸣县| 涿鹿县| 修武县| 北辰区| 诸城市| 牟定县| 筠连县| 广东省| 荥经县| 林周县| 余庆县| 南平市| 友谊县| 东乌| 益阳市| 广饶县| 张家港市| 舒城县| 镇巴县| 武汉市| 唐海县| 鹤庆县| 汝州市| 吉隆县| 博野县| 西峡县| 平邑县| 沙坪坝区| 伽师县| 定远县| 边坝县| 澳门| 瑞丽市| 柏乡县| 秦皇岛市| 衡南县| 罗甸县| 南岸区|