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

溫馨提示×

溫馨提示×

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

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

用Python寫一段用戶登錄的程序代碼

發布時間:2020-09-25 09:36:27 來源:腳本之家 閱讀:179 作者:huangyingleo 欄目:開發技術

如下所示:

#!/usr/bin/env python
#coding: utf8
import getpass
db = {}
def newUser():
 username = raw_input('username: ')
 if username in db:
 #添加打印顏色
 print "\033[32;1m%s already exists![0m" % username
 else:
 #屏幕不顯示密碼,調用getpass.getpass()
 password = getpass.getpass()
 db[username] = password #字典k-v賦值
def oldUser():
 username = raw_input('username: ')
 password = getpass.getpass()
 if username in db:
 if db.get(username) == password:#判斷輸入的用戶名和密碼是否和字典的k-v匹配
  print '\033[32;1mlogin successful!\033[0m'
 else:
  print '\033[32;1mpassword not match username\033[0m'
 else:
 print '\033[32;1musername does not exist\033[0m'
CMDs = {'n':newUser,'o':oldUser}
def showMenu():
 prompt = """(N)ew user
(O)ld user
(Q)uit
input your choice: """
 while True:
 try:#捕獲ctrl+c ctrl+d的異常
  choice = raw_input(prompt).strip().lower()[0]
 except (KeyboardInterrupt, EOFError):
  choice = 'q'
 if choice not in 'noq':
  continue
 if choice == 'q':
  break
 CMDs[choice]()#這種方法相當于shell和c里面的case,很實用
if __name__ == '__main__':
 showMenu()

用Python寫一段用戶登錄的程序代碼

以上這篇用Python寫一段用戶登錄的程序代碼就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

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

AI

梧州市| 合阳县| 通河县| 新疆| 出国| 清镇市| 安陆市| 通州区| 长垣县| 蒲城县| 和硕县| 繁峙县| 东至县| 宁远县| 合江县| 电白县| 临沭县| 资兴市| 怀化市| 济源市| 龙山县| 明光市| 古田县| 白城市| 商河县| 三河市| 千阳县| 揭东县| 齐齐哈尔市| 无棣县| 友谊县| 井研县| 颍上县| 东兰县| 呼伦贝尔市| 天台县| 柳江县| 革吉县| 古交市| 额济纳旗| 临清市|