时间:2021-05-22
如下所示:
#!/usr/bin/env python#coding: utf8import getpassdb = {}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)uitinput 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写一段用户登录的程序代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一个小项目自动登录淘宝联盟抓取数据,由于之前在Github上看过类似用Python写的代码因此选择用Python来写,第一次用Python正式写程序还是被其“简
在写小程序代码的时候,我们发现经常有一段代码我们经常敲,经常使用某一自定义组件,例如商城首页的轮播图和商品详情页的商品展示栏是近乎相同的代码;微信小程序里的弹窗
最近写运维自动化平台,需要用python写很多的小功能模块。这里就分享一个用Python的paramiko来实现功能的一段代码:复制远程服务器上的文件及文件夹到
有的时候程序需要有进度条显示,比如说安装程序、下载文件等场合。下面有一段小程序可达到效果程序代码importtimeforiinrange(0,101,2):t
python爬虫基本告一段落,琢磨搞点其他的,正好在网上看到一个帖子,一个外国13岁小朋友用python写的下棋程序,内容详细,也有意思,拿来练手。13岁啊。。