用Python写一段用户登录的程序代码
作者:huangyingleo 时间:2022-09-29 08:40:44
如下所示:
#!/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()
来源:https://blog.csdn.net/huangyingleo/article/details/54232870
标签:用户,登录,用Python
0
投稿
猜你喜欢
OpenLayer基于vue的封装使用教程
2024-05-11 09:16:22
将MySQL的作为文件系统使用
2011-12-14 18:34:26
python处理RSTP视频流过程解析
2023-11-22 00:54:55
提高MySQL数据库查询效率的几个技巧
2009-01-19 12:52:00
自然描述与自然任务
2010-01-26 15:51:00
Mysql通过Adjacency List(邻接表)存储树形结构
2024-01-18 01:31:37
Python高阶函数map() 简介和使用详解
2021-04-03 04:34:11
给zblog加上运行代码功能
2007-12-19 13:07:00
Python pytest装饰器总结(实例详解)
2023-06-12 07:15:14
python之关于数组和列表的区别及说明
2021-07-29 17:35:31
SQLServer 游标简介与使用说明
2009-07-02 13:53:00
python实现简易的学生信息管理系统
2021-08-24 12:07:09
通过python实现弹窗广告拦截过程详解
2022-04-12 09:21:31
selenium+python自动化测试之鼠标和键盘事件
2022-10-28 03:32:25
window.location的重写及判断location是否被重写
2024-04-28 10:18:17
Anaconda最新版2023安装教程Spyder安装教程图文详解
2021-12-24 00:29:56
vscode 左侧扩展活动栏内容消失的问题及解决方法
2022-01-12 04:26:35
Pandas多列值合并成一列的实现
2023-02-13 08:39:44
Pytorch实现神经网络的分类方式
2021-02-26 05:20:47
Python爬虫解析网页的4种方式实例及原理解析
2022-11-03 03:11:23